@mjhls/mjh-framework 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +13 -18
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +13 -18
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -5166,7 +5166,7 @@ var LeftNav = function LeftNav(props) {
|
|
|
5166
5166
|
row.subQuery && row.subQuery.map(function (subRow, subIndex) {
|
|
5167
5167
|
if (subIndex === 0) {
|
|
5168
5168
|
return React__default.createElement(
|
|
5169
|
-
|
|
5169
|
+
React__default.Fragment,
|
|
5170
5170
|
{ key: subIndex },
|
|
5171
5171
|
React__default.createElement(
|
|
5172
5172
|
ListGroup.Item,
|
|
@@ -5187,25 +5187,20 @@ var LeftNav = function LeftNav(props) {
|
|
|
5187
5187
|
)
|
|
5188
5188
|
)
|
|
5189
5189
|
);
|
|
5190
|
-
}
|
|
5191
|
-
|
|
5192
|
-
|
|
5193
|
-
|
|
5190
|
+
}
|
|
5191
|
+
return React__default.createElement(
|
|
5192
|
+
ListGroup.Item,
|
|
5193
|
+
{ as: 'li', key: subIndex },
|
|
5194
|
+
React__default.createElement(
|
|
5195
|
+
link$2,
|
|
5196
|
+
{ href: subRow.url },
|
|
5194
5197
|
React__default.createElement(
|
|
5195
|
-
|
|
5196
|
-
|
|
5197
|
-
|
|
5198
|
-
link$2,
|
|
5199
|
-
{ href: subRow.url },
|
|
5200
|
-
React__default.createElement(
|
|
5201
|
-
'a',
|
|
5202
|
-
null,
|
|
5203
|
-
subRow.name
|
|
5204
|
-
)
|
|
5205
|
-
)
|
|
5198
|
+
'a',
|
|
5199
|
+
null,
|
|
5200
|
+
subRow.name
|
|
5206
5201
|
)
|
|
5207
|
-
)
|
|
5208
|
-
|
|
5202
|
+
)
|
|
5203
|
+
);
|
|
5209
5204
|
})
|
|
5210
5205
|
);
|
|
5211
5206
|
})
|