@mjhls/mjh-framework 1.0.4 → 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.js CHANGED
@@ -5173,7 +5173,7 @@ var LeftNav = function LeftNav(props) {
5173
5173
  row.subQuery && row.subQuery.map(function (subRow, subIndex) {
5174
5174
  if (subIndex === 0) {
5175
5175
  return React__default.createElement(
5176
- 'enclosed',
5176
+ React__default.Fragment,
5177
5177
  { key: subIndex },
5178
5178
  React__default.createElement(
5179
5179
  ListGroup.Item,
@@ -5194,25 +5194,20 @@ var LeftNav = function LeftNav(props) {
5194
5194
  )
5195
5195
  )
5196
5196
  );
5197
- } else {
5198
- return React__default.createElement(
5199
- 'enclosed',
5200
- { key: subIndex },
5197
+ }
5198
+ return React__default.createElement(
5199
+ ListGroup.Item,
5200
+ { as: 'li', key: subIndex },
5201
+ React__default.createElement(
5202
+ link$2,
5203
+ { href: subRow.url },
5201
5204
  React__default.createElement(
5202
- ListGroup.Item,
5203
- { as: 'li' },
5204
- React__default.createElement(
5205
- link$2,
5206
- { href: subRow.url },
5207
- React__default.createElement(
5208
- 'a',
5209
- null,
5210
- subRow.name
5211
- )
5212
- )
5205
+ 'a',
5206
+ null,
5207
+ subRow.name
5213
5208
  )
5214
- );
5215
- }
5209
+ )
5210
+ );
5216
5211
  })
5217
5212
  );
5218
5213
  })