Skip to content

Commit f97cc41

Browse files
committed
no .ico
1 parent d492ac5 commit f97cc41

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

services/static-webserver/client/source/class/osparc/study/Utils.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ qx.Class.define("osparc.study.Utils", {
370370

371371
__guessS4LIcon: function(studyData) {
372372
// the was to guess the TI type is to check the boot mode of the ti-postpro in the pipeline
373-
const wbServices = new Set(this.extractUniqueServices(studyData["workbench"]));
373+
const wbServices = Object.values(studyData["workbench"]);
374374
if (wbServices.length === 1) {
375375
if (wbServices[0]["key"].includes("iseg")) {
376376
return "https://raw.githubusercontent.com/ITISFoundation/osparc-iseg/master/iSeg/images/isegicon.png";
@@ -379,7 +379,8 @@ qx.Class.define("osparc.study.Utils", {
379379
return "https://images.seeklogo.com/logo-png/35/1/jupyter-logo-png_seeklogo-354673.png";
380380
}
381381
if (wbServices[0]["key"].includes("s4l-ui")) {
382-
return "osparc/icons/Sim4Life.ico";
382+
// return "https://raw.githubusercontent.com/ZurichMedTech/s4l-assets/refs/heads/main/app/icons/s4l/Sim4Life.png";
383+
return "osparc/icons/Sim4Life.png";
383384
}
384385
}
385386
return osparc.dashboard.CardBase.PRODUCT_ICON;
Binary file not shown.

0 commit comments

Comments
 (0)