Skip to content

Commit 5604650

Browse files
committed
Aligne monitor cells on top + layer on hp panel when server not conneced.
1 parent 47b67aa commit 5604650

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

source/src/main/webapp/include/templates/card-with-tabs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@
177177
// console.info(event);
178178

179179
// label
180-
this.tabs.ongoing.active = (data?.active || true) ? true : false;
180+
this.tabs.ongoing.active = (data?.active);
181181

182182
// label
183183
this.tabs.ongoing.label = (data.queueStats?.running || 0) > 0 ? "Currently Executing" : "No execution running";

source/src/main/webapp/js/pages/ReportingMonitor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ function refreshMonitorTable(dataFromWs) {
829829
let col = Object.keys(columns);
830830
// console.info(i);
831831
// console.info(col[i]);
832-
let cel = $("<td style='text-align: center;max-width : 120px'></td>").attr("id", "H" + col[i]);
832+
let cel = $("<td style='text-align: center; max-width : 120px; vertical-align: top'></td>").attr("id", "H" + col[i]);
833833
cel.append(columns[col[i]].label);
834834
row.append(cel);
835835
}
@@ -841,7 +841,7 @@ function refreshMonitorTable(dataFromWs) {
841841
let col = Object.keys(columns);
842842
// console.info(i);
843843
// console.info(col[i]);
844-
let cel = $("<td style='text-align: center'></td>").attr("id", col[i]);
844+
let cel = $("<td style='text-align: center; vertical-align: top'></td>").attr("id", col[i]);
845845
row.append(cel);
846846
}
847847
monTable.append(row);

0 commit comments

Comments
 (0)