Skip to content

Commit

Permalink
dashboard: add a log-container class for testing and future use
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan committed Jun 9, 2023
1 parent bf1e367 commit bf94278
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/assets/scripts/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ class JobsRenderer {
]);

const logWindow = h("div", logWindowAttrs, logSegment);
const div = h("div", { id: `log-container-${ident}` }, [
const div = h("div", { className: "log-container", id: `log-container-${ident}` }, [
h("div", { className: "job-header" }, [statsElements.jobInfo, h("span", { className: "job-ident" }, ident)]),
logWindow,
]);
Expand Down

0 comments on commit bf94278

Please sign in to comment.