File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
services/static-webserver/client/source/class/osparc/jobs Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -43,12 +43,10 @@ qx.Class.define("osparc.jobs.RunsTable", {
4343
4444 Object . values ( this . self ( ) . COLS ) . forEach ( col => columnModel . setColumnWidth ( col . column , col . width ) ) ;
4545
46- const iconPathStop = "osparc/icons/circle-xmark-text.svg" ;
47- const fontButtonRendererStop = new osparc . ui . table . cellrenderer . ImageButtonRenderer ( "cancel" , iconPathStop ) ;
46+ const fontButtonRendererStop = new osparc . ui . table . cellrenderer . ImageButtonRenderer ( "cancel" , this . self ( ) . ICONS . CANCEL ) ;
4847 columnModel . setDataCellRenderer ( this . self ( ) . COLS . ACTION_CANCEL . column , fontButtonRendererStop ) ;
4948
50- const iconPathInfo = "osparc/icons/circle-info-text.svg" ;
51- const fontButtonRendererInfo = new osparc . ui . table . cellrenderer . ImageButtonRenderer ( "info" , iconPathInfo ) ;
49+ const fontButtonRendererInfo = new osparc . ui . table . cellrenderer . ImageButtonRenderer ( "info" , this . self ( ) . ICONS . INFO ) ;
5250 columnModel . setDataCellRenderer ( this . self ( ) . COLS . ACTION_INFO . column , fontButtonRendererInfo ) ;
5351
5452 this . __attachHandlers ( ) ;
@@ -75,6 +73,12 @@ qx.Class.define("osparc.jobs.RunsTable", {
7573 } ,
7674
7775 statics : {
76+ // Explicitly declare icon paths to ensure they're included in builds
77+ ICONS : {
78+ CANCEL : "osparc/icons/circle-xmark-text.svg" ,
79+ INFO : "osparc/icons/circle-info-text.svg"
80+ } ,
81+
7882 COLS : {
7983 PROJECT_UUID : {
8084 id : "projectUuid" ,
You can’t perform that action at this time.
0 commit comments