Skip to content

Commit 959e73e

Browse files
committed
Make continue button yellow if there are issues
1 parent f076dd9 commit 959e73e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

frontend/src/components/match/ContinueActionButton.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ const color = computed(() => {
2323
case 'READY_AUTO':
2424
return 'positive'
2525
case 'READY_MANUAL':
26+
if (issues.value && issues.value.length > 0) {
27+
return 'warning'
28+
}
2629
return 'primary'
2730
case 'BLOCKED':
2831
return 'negative'

0 commit comments

Comments
 (0)