contentoh-components-library 21.4.46 → 21.4.48
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.
|
@@ -1226,6 +1226,7 @@ var ProviderProductEdition = function ProviderProductEdition(_ref) {
|
|
|
1226
1226
|
case 0:
|
|
1227
1227
|
inputs = function () {
|
|
1228
1228
|
var fields = {};
|
|
1229
|
+
var keyCount = 1;
|
|
1229
1230
|
boxData.map(function (e) {
|
|
1230
1231
|
return (0, _objectSpread3.default)({}, e.value);
|
|
1231
1232
|
}).forEach(function (item, k) {
|
|
@@ -1235,7 +1236,7 @@ var ProviderProductEdition = function ProviderProductEdition(_ref) {
|
|
|
1235
1236
|
}
|
|
1236
1237
|
|
|
1237
1238
|
fields[key].box = fields[key].box || {};
|
|
1238
|
-
fields[key].box[k] = item[key];
|
|
1239
|
+
fields[key].box[k + 1] = item[key];
|
|
1239
1240
|
}
|
|
1240
1241
|
});
|
|
1241
1242
|
return fields;
|
package/package.json
CHANGED
|
@@ -685,6 +685,7 @@ export const ProviderProductEdition = ({
|
|
|
685
685
|
const inputs = (() => {
|
|
686
686
|
|
|
687
687
|
let fields = {}
|
|
688
|
+
let keyCount = 1;
|
|
688
689
|
|
|
689
690
|
boxData.map(e=>({
|
|
690
691
|
...e.value,
|
|
@@ -695,7 +696,7 @@ export const ProviderProductEdition = ({
|
|
|
695
696
|
fields[key] = {};
|
|
696
697
|
}
|
|
697
698
|
fields[key].box = fields[key].box || {};
|
|
698
|
-
fields[key].box[k] = item[key];
|
|
699
|
+
fields[key].box[k+1] = item[key];
|
|
699
700
|
}
|
|
700
701
|
|
|
701
702
|
})
|
|
File without changes
|