diff --git a/src/webcomponents/job/job-detail-log.js b/src/webcomponents/job/job-detail-log.js index aac9525a8..9ef764de9 100644 --- a/src/webcomponents/job/job-detail-log.js +++ b/src/webcomponents/job/job-detail-log.js @@ -18,7 +18,6 @@ import {LitElement, html} from "lit"; import UtilsNew from "../../core/utils-new.js"; import NotificationUtils from "../commons/utils/notification-utils.js"; - export default class JobDetailLog extends LitElement { constructor() { @@ -115,7 +114,7 @@ export default class JobDetailLog extends LitElement { } async fetchContent(job, params = {}, append = false) { - const statusWithoutLogs = ["PENDING", "ABORTED", "QUEUED"]; + const statusWithoutLogs = ["PENDING", "QUEUED"]; if (!append) { this.content = ""; } @@ -170,29 +169,9 @@ export default class JobDetailLog extends LitElement { render() { return html` -
${this.content}\n${this.renderCursor()}diff --git a/src/webcomponents/job/job-grid.js b/src/webcomponents/job/job-grid.js index 446a84b62..ab8c428ec 100644 --- a/src/webcomponents/job/job-grid.js +++ b/src/webcomponents/job/job-grid.js @@ -693,7 +693,7 @@ export default class JobGrid extends LitElement { { render: () => html` `, } diff --git a/styles/css/global.css b/styles/css/global.css index 61a48b4c3..251d2d9a3 100644 --- a/styles/css/global.css +++ b/styles/css/global.css @@ -368,6 +368,15 @@ select.no-data + .select2-container--bootstrap-5.select2-container--open.select2 .anim-spaceOutUp { animation: spaceOutUp .5s infinite; } +.anim-rotate { + animation: rotate 1.5s linear infinite; +} + +@keyframes rotate { + to { + transform: rotate(360deg); + } +} @keyframes float { 0% {