@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
@@ -395,7 +395,7 @@ const upsertAttributes = (originalAttributes, attributesToUpsert) => {
|
|
395
395
|
const [origAttr] = getAttributes(acc, [name]);
|
396
396
|
return [
|
397
397
|
...acc.filter(attr => attr.name !== name),
|
398
|
-
{ ...(origAttr ?? { name }), cfgStatus: origAttr ? 'Changed' : 'User', value },
|
398
|
+
{ ...(origAttr ?? { name, type: '' }), cfgStatus: origAttr ? 'Changed' : 'User', value },
|
399
399
|
];
|
400
400
|
}, originalAttributes);
|
401
401
|
};
|