Skip to content

Commit 91de9cf

Browse files
authored
fix: Standardize colors for runs in queued status (#23015)
1 parent 7f054ae commit 91de9cf

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

packages/app/src/specs/RunStatusDots.cy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describe('<RunStatusDots />', () => {
5858
cy.get('.v-popper__popper--shown').contains('spec.cy.ts')
5959
cy.findAllByTestId('run-status-dot-0').should('have.class', 'icon-light-orange-400')
6060
cy.findAllByTestId('run-status-dot-1').should('have.class', 'icon-light-indigo-400')
61-
cy.findAllByTestId('run-status-dot-2').should('have.class', 'icon-light-gray-400')
61+
cy.findAllByTestId('run-status-dot-2').should('have.class', 'icon-light-gray-300')
6262
cy.findAllByTestId('run-status-dot-latest').should('not.have.class', 'animate-spin')
6363
})
6464
})

packages/app/src/specs/RunStatusDots.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,10 +157,10 @@ const dotClasses = computed(() => {
157157
case 'ERRORED':
158158
case 'TIMEDOUT':
159159
return 'icon-light-orange-400'
160-
case 'UNCLAIMED':
161160
case 'NOTESTS':
162161
return 'icon-light-gray-400'
163162
case 'CANCELLED':
163+
case 'UNCLAIMED':
164164
default:
165165
return 'icon-light-gray-300'
166166
}
Lines changed: 2 additions & 3 deletions
Loading

0 commit comments

Comments
 (0)