Skip to content

Commit 95663ba

Browse files
committed
minor
1 parent d91bc02 commit 95663ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -864,18 +864,18 @@ qx.Class.define("osparc.dashboard.ResourceDetails", {
864864
__getProjectFilesPopUp: function() {
865865
const resourceData = this.__resourceData;
866866
if (!osparc.utils.Resources.isService(resourceData)) {
867-
const title = osparc.product.Utils.getStudyAlias({firstUpperCase: true}) + this.tr(" Files...");
867+
const title = osparc.product.Utils.resourceTypeToAlias(resourceData["resourceType"], {firstUpperCase: true}) + this.tr(" Files");
868868
const iconSrc = "@FontAwesome5Solid/file/22";
869869
const dataAccess = new qx.ui.basic.Atom().set({
870-
label: title,
870+
label: title + "...",
871871
icon: iconSrc,
872872
font: "text-14",
873873
padding: 8,
874874
paddingLeft: 12,
875875
gap: 14,
876876
cursor: "pointer",
877877
});
878-
dataAccess.addListener("tap", () => osparc.widget.StudyDataManager.popUpInWindow(resourceData["uuid"]));
878+
dataAccess.addListener("tap", () => osparc.widget.StudyDataManager.popUpInWindow(resourceData["uuid"], null, title));
879879
this.addWidgetToTabs(dataAccess);
880880

881881
if (resourceData["resourceType"] === "study") {

0 commit comments

Comments
 (0)