@mjhls/mjh-framework 1.0.1006 → 1.0.1007
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/README.md +1 -1
- package/dist/cjs/AlgoliaSearch.js +2 -1
- package/dist/esm/AlgoliaSearch.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# mjh-framework v. 1.0.
|
|
1
|
+
# mjh-framework v. 1.0.1007
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/mjh-framework) [](https://standardjs.com)
|
|
4
4
|
|
|
@@ -14891,7 +14891,8 @@ var HitComponent = function HitComponent(hits, props) {
|
|
|
14891
14891
|
return React__default["default"].createElement(
|
|
14892
14892
|
'span',
|
|
14893
14893
|
{ key: author + '_' + index },
|
|
14894
|
-
author.displayName
|
|
14894
|
+
author.displayName,
|
|
14895
|
+
index < hit.authorMapping.length - 1 ? ', ' : null
|
|
14895
14896
|
);
|
|
14896
14897
|
})
|
|
14897
14898
|
),
|
|
@@ -14884,7 +14884,8 @@ var HitComponent = function HitComponent(hits, props) {
|
|
|
14884
14884
|
return React__default.createElement(
|
|
14885
14885
|
'span',
|
|
14886
14886
|
{ key: author + '_' + index },
|
|
14887
|
-
author.displayName
|
|
14887
|
+
author.displayName,
|
|
14888
|
+
index < hit.authorMapping.length - 1 ? ', ' : null
|
|
14888
14889
|
);
|
|
14889
14890
|
})
|
|
14890
14891
|
),
|