Skip to content

Commit

Permalink
fix danger border on pending
Browse files Browse the repository at this point in the history
Signed-off-by: F-Node-Karlsruhe <[email protected]>
  • Loading branch information
F-Node-Karlsruhe committed Sep 8, 2023
1 parent 75ee386 commit a7e4cf2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ VC Verifier Changelog
WIP
---

- fix danger border on pending


1.7.0 (2023-09-08)
---
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Credential.vue
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export default {
},
getStateColor(credential) {
if (credential.suspended) return 'warning';
if (!credential.verified) return 'danger';
if (credential.verified === false) return 'danger';
return 'success';
},
downloadCredential(credential) {
Expand Down

0 comments on commit a7e4cf2

Please sign in to comment.