Skip to content

Commit c04cb11

Browse files
Show success more robustly
1 parent c58f421 commit c04cb11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/view-model/status-view-model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export class StatusViewModel {
4242
if (sub in model.preprocStatuses) {
4343
const subjectPreprocStatuses = model.preprocStatuses[sub];
4444
if (subjectPreprocStatuses.every((status) => status.ok)) {
45-
if (status === "running") {
45+
if (status !== "error") {
4646
status = "success";
4747
}
4848
}

0 commit comments

Comments
 (0)