@veloceapps/sdk 8.0.0-167 → 8.0.0-169
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/cms/components/element-tools-panel/element-tools-panel.component.mjs +3 -3
- package/esm2020/core/utils/line-item.utils.mjs +2 -2
- package/fesm2015/veloceapps-sdk-cms.mjs +2 -2
- package/fesm2015/veloceapps-sdk-cms.mjs.map +1 -1
- package/fesm2015/veloceapps-sdk-core.mjs +1 -1
- package/fesm2015/veloceapps-sdk-core.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-cms.mjs +2 -2
- package/fesm2020/veloceapps-sdk-cms.mjs.map +1 -1
- package/fesm2020/veloceapps-sdk-core.mjs +1 -1
- package/fesm2020/veloceapps-sdk-core.mjs.map +1 -1
- package/package.json +1 -2
@@ -358,7 +358,7 @@ const upsertAttributes = (originalAttributes, attributesToUpsert) => {
|
|
358
358
|
const [origAttr] = getAttributes(acc, [name]);
|
359
359
|
return [
|
360
360
|
...acc.filter(attr => attr.name !== name),
|
361
|
-
Object.assign(Object.assign({}, (origAttr !== null && origAttr !== void 0 ? origAttr : { name })), { cfgStatus: origAttr ? 'Changed' : 'User', value }),
|
361
|
+
Object.assign(Object.assign({}, (origAttr !== null && origAttr !== void 0 ? origAttr : { name, type: '' })), { cfgStatus: origAttr ? 'Changed' : 'User', value }),
|
362
362
|
];
|
363
363
|
}, originalAttributes);
|
364
364
|
};
|