Skip to content

Commit 777669f

Browse files
committed
cancel button
1 parent 98621e5 commit 777669f

File tree

1 file changed

+5
-5
lines changed
  • services/static-webserver/client/source/class/osparc/jobs

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ qx.Class.define("osparc.jobs.RunsTable", {
3636

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

39-
const iconPathStop = "osparc/circle-stop-text.svg";
40-
const fontButtonRendererStop = new osparc.ui.table.cellrenderer.ImageButtonRenderer("stop", iconPathStop);
41-
columnModel.setDataCellRenderer(this.self().COLS.ACTION_STOP.column, fontButtonRendererStop);
39+
const iconPathStop = "osparc/circle-xmark-text.svg";
40+
const fontButtonRendererStop = new osparc.ui.table.cellrenderer.ImageButtonRenderer("cancel", iconPathStop);
41+
columnModel.setDataCellRenderer(this.self().COLS.ACTION_CANCEL.column, fontButtonRendererStop);
4242

4343
this.__attachHandlers();
4444
},
@@ -89,8 +89,8 @@ qx.Class.define("osparc.jobs.RunsTable", {
8989
width: 130,
9090
sortable: true
9191
},
92-
ACTION_STOP: {
93-
id: "action_stop",
92+
ACTION_CANCEL: {
93+
id: "action_cancel",
9494
column: 6,
9595
label: "",
9696
width: 40

0 commit comments

Comments
 (0)