Skip to content

Commit 72c4252

Browse files
committed
Full
1 parent 087a019 commit 72c4252

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -794,8 +794,7 @@ qx.Class.define("osparc.dashboard.StudyBrowser", {
794794
if (product in newStudiesData) {
795795
const mode = this._resourcesContainer.getMode();
796796
const title = this.tr("New Plan");
797-
const desc = this.tr("Choose Plan in pop-up");
798-
const newStudyBtn = (mode === "grid") ? new osparc.dashboard.GridButtonNew(title, desc) : new osparc.dashboard.ListButtonNew(title, desc);
797+
const newStudyBtn = (mode === "grid") ? new osparc.dashboard.GridButtonNew(title) : new osparc.dashboard.ListButtonNew(title, desc);
799798
newStudyBtn.setCardKey("new-study");
800799
newStudyBtn.subscribeToFilterGroup("searchBarFilter");
801800
osparc.utils.Utils.setIdToWidget(newStudyBtn, "newStudyBtn");

services/static-webserver/client/source/class/osparc/navigation/UserMenu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ qx.Class.define("osparc.navigation.UserMenu", {
117117
this.add(control);
118118
break;
119119
case "tip-lite-button":
120-
control = new qx.ui.menu.Button(this.tr("Access full TIP"));
120+
control = new qx.ui.menu.Button(this.tr("Access Full TIP"));
121121
osparc.utils.Utils.setIdToWidget(control, "userMenuAccessTIPBtn");
122122
control.addListener("execute", () => osparc.product.TIPTeaser.getInstance().open());
123123
this.add(control);

0 commit comments

Comments
 (0)