Skip to content

Commit

Permalink
fix: display the Unknown standing notification
Browse files Browse the repository at this point in the history
  • Loading branch information
fterra-encora committed Dec 7, 2023
1 parent 1fcc989 commit 52016a1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontend/src/pages/SubmissionReviewPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,11 @@ const tagColor = (status: string) =>{
</cds-inline-notification>

<cds-actionable-notification
v-if="data.submissionType === 'Review new client' && !data.matchers.goodStanding && data.submissionStatus !== 'Approved'"
v-if="
data.submissionType === 'Review new client' &&
data.matchers.goodStanding === 'Value not found' &&
data.submissionStatus !== 'Approved'
"
v-shadow="true"
low-contrast="true"
hide-close-button="true"
Expand Down

0 comments on commit 52016a1

Please sign in to comment.