@credithub/harlan-components 1.59.3 → 1.59.4
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.
|
@@ -117,9 +117,9 @@ var Protestos = function () {
|
|
|
117
117
|
.map(function (protestoElement, index) { return (React.createElement(ProtestoItem, { protesto: protestoElement, key: index })); })))
|
|
118
118
|
}
|
|
119
119
|
].sort(function (a, b) { return b.total - a.total; });
|
|
120
|
-
var children = registros ? (React.createElement(ResultProtestos, null, elements.map(function (_a) {
|
|
120
|
+
var children = registros ? (React.createElement(ResultProtestos, null, elements.map(function (_a, i) {
|
|
121
121
|
var element = _a.element;
|
|
122
|
-
return element;
|
|
122
|
+
return React.createElement(React.Fragment, { key: i }, element);
|
|
123
123
|
}))) : null;
|
|
124
124
|
return {
|
|
125
125
|
children: children,
|