We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f939f83 commit 7bfb913Copy full SHA for 7bfb913
services/static-webserver/client/source/class/osparc/form/tag/TagItem.js
@@ -286,7 +286,7 @@ qx.Class.define("osparc.form.tag.TagItem", {
286
fetch = osparc.store.Tags.getInstance().postTag(data);
287
}
288
fetch
289
- .then(tag => this.set(tag))
+ .then(tag => this.setTag(tag))
290
.catch(console.error)
291
.finally(() => {
292
this.fireEvent("tagSaved");
services/static-webserver/client/source/class/osparc/store/Tags.js
@@ -93,7 +93,7 @@ qx.Class.define("osparc.store.Tags", {
93
};
94
return osparc.data.Resources.getInstance().fetch("tags", "put", params)
95
.then(tagData => {
96
- this.__addToCache(tagData);
+ return this.__addToCache(tagData);
97
})
98
.catch(console.error);
99
},
0 commit comments