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.
New Tag
1 parent febe7e8 commit 87ad476Copy full SHA for 87ad476
services/static-webserver/client/source/class/osparc/form/tag/TagManager.js
@@ -82,14 +82,14 @@ qx.Class.define("osparc.form.tag.TagManager", {
82
allowGrowX: false
83
});
84
addTagButton.addListener("execute", () => {
85
+ this.__repopulateTags();
86
const newItem = new osparc.form.tag.TagItem().set({
87
mode: osparc.form.tag.TagItem.modes.EDIT
88
89
newItem.addListener("tagSaved", () => this.__repopulateTags(), this);
90
newItem.addListener("cancelNewTag", e => tagsContainer.remove(e.getTarget()), this);
91
newItem.addListener("deleteTag", e => tagsContainer.remove(e.getTarget()), this);
92
tagsContainer.add(newItem);
- this.__repopulateTags();
93
94
this._add(addTagButton);
95
0 commit comments