Skip to content

Commit 64c1b19

Browse files
committed
minor
1 parent ac227d5 commit 64c1b19

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

services/static-webserver/client/source/class/osparc/dashboard/SearchBarFilter.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -271,17 +271,17 @@ qx.Class.define("osparc.dashboard.SearchBarFilter", {
271271
},
272272

273273
addTagActiveFilter: function(tag) {
274-
this.__addChip("tag", tag.id, tag.name);
274+
this.__addChip("tag", tag.getTagId(), tag.getName());
275275
},
276276

277277
setTagsActiveFilter: function(tagIds) {
278278
const tags = osparc.store.Tags.getInstance().getTags();
279279
tags.forEach(tag => {
280280
const tagId = tag.getTagId();
281281
if (tagIds.includes(tagId)) {
282-
this.__addChip("tag", tag.id, tag.getName());
282+
this.__addChip("tag", tagId, tag.getName());
283283
} else {
284-
this.__removeChip("tag", tag.id, tag.getName());
284+
this.__removeChip("tag", tagId, tag.getName());
285285
}
286286
});
287287
},

0 commit comments

Comments
 (0)