Skip to content

Commit bc5210c

Browse files
committed
openTags
1 parent 8a16566 commit bc5210c

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,8 +419,8 @@ qx.Class.define("osparc.dashboard.ResourceFilter", {
419419
appearance: "filter-toggle-button"
420420
});
421421
editTagsButton.addListener("execute", () => {
422-
const preferencesWindow = osparc.desktop.account.MyAccountWindow.openWindow();
423-
preferencesWindow.openTags();
422+
const myAccountWindow = osparc.desktop.account.MyAccountWindow.openWindow();
423+
myAccountWindow.openTags();
424424
});
425425
layout.add(editTagsButton);
426426

services/static-webserver/client/source/class/osparc/desktop/account/MyAccount.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,6 @@ qx.Class.define("osparc.desktop.account.MyAccount", {
154154
osparc.utils.Utils.setIdToWidget(page.getChildControl("button"), "preferencesTagsTabBtn");
155155
},
156156

157-
openProfile: function() {
158-
this._openPage(this.__profilePage);
159-
return true;
160-
},
161-
162157
openTags: function() {
163158
if (this.__tagsPage) {
164159
this._openPage(this.__tagsPage);

services/static-webserver/client/source/class/osparc/desktop/account/MyAccountWindow.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ qx.Class.define("osparc.desktop.account.MyAccountWindow", {
4646
members: {
4747
__myAccount: null,
4848

49-
openProfile: function() {
50-
return this.__myAccount.openProfile();
51-
}
49+
openTags: function() {
50+
this.__myAccount.openTags();
51+
},
5252
}
5353
});

0 commit comments

Comments
 (0)