Skip to content

Commit bd9d248

Browse files
committed
more buttons
1 parent 852f2ff commit bd9d248

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

services/static-webserver/client/source/class/osparc/jobs/RunsTable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ qx.Class.define("osparc.jobs.RunsTable", {
6767
}
6868
return false;
6969
}
70-
const iconPathInfo = "osparc/icons/circle-info-text.svg";
70+
const iconPathInfo = osparc.ui.switch.ThemeSwitcher.isLight() ? "osparc/icons/circle-info-white.svg" : "osparc/icons/circle-info-white.svg";
7171
const fontButtonRendererInfo = new osparc.ui.table.cellrenderer.ImageButtonRenderer("info", iconPathInfo, shouldShowInfo);
7272
columnModel.setDataCellRenderer(this.self().COLS.ACTION_INFO.column, fontButtonRendererInfo);
7373

services/static-webserver/client/source/class/osparc/jobs/SubRunsTable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ qx.Class.define("osparc.jobs.SubRunsTable", {
3737

3838
Object.values(this.self().COLS).forEach(col => columnModel.setColumnWidth(col.column, col.width));
3939

40-
const iconPathInfo = "osparc/icons/circle-info-text.svg";
40+
const iconPathInfo = osparc.ui.switch.ThemeSwitcher.isLight() ? "osparc/icons/circle-info-white.svg" : "osparc/icons/circle-info-white.svg";
4141
const fontButtonRendererInfo = new osparc.ui.table.cellrenderer.ImageButtonRenderer("info", iconPathInfo);
4242
columnModel.setDataCellRenderer(this.self().COLS.INFO.column, fontButtonRendererInfo);
4343

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)