File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
services/static-webserver/client/source Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments