Skip to content

Commit c7929e1

Browse files
authored
🐛 [Frontend] Fix: Tutorials tab link (#7849)
1 parent 3f0809d commit c7929e1

File tree

1 file changed

+3
-3
lines changed
  • services/static-webserver/client/source/class/osparc/dashboard

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,9 @@ qx.Class.define("osparc.dashboard.NewPlusMenu", {
244244

245245
const permissions = osparc.data.Permissions.getInstance();
246246
if (permissions.canDo("dashboard.templates.read")) {
247-
const templatesButton = this.self().createMenuButton("@FontAwesome5Solid/copy/16", this.tr("Tutorials..."));
248-
templatesButton.addListener("execute", () => this.fireDataEvent("changeTab", "templatesTab"), this);
249-
moreMenu.add(templatesButton);
247+
const tutorialsButton = this.self().createMenuButton("@FontAwesome5Solid/copy/16", this.tr("Tutorials..."));
248+
tutorialsButton.addListener("execute", () => this.fireDataEvent("changeTab", "tutorialsTab"), this);
249+
moreMenu.add(tutorialsButton);
250250
}
251251

252252
if (permissions.canDo("dashboard.services.read")) {

0 commit comments

Comments
 (0)