@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.
@@ -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
  };