Skip to content

Commit cde492a

Browse files
committed
PR Feedback; remove needless condition
1 parent 713dbb2 commit cde492a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/frontend/src/pages/status_new/collector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function ActiveStatus({collector}: {collector: CollectorConfig}) {
5959
const allJobsComplete = collector.jobs.every(
6060
(job) => job.status === "Failed" || job.status === "Success"
6161
);
62-
if (allJobsComplete || collector.jobs.length === 0) {
62+
if (allJobsComplete) {
6363
statusText = "Waiting";
6464
statusClass = "waiting";
6565
} else {

0 commit comments

Comments
 (0)