@veloceapps/sdk 8.0.0-167 → 8.0.0-168
Sign up to get free protection for your applications and to get access to all the features.
@@ -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
|
};
|