Skip to content

Commit 7932a02

Browse files
committed
feat: add tooltip for approved business status and update breadcrumb link hover color for clarity
1 parent 4810d7d commit 7932a02

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/views/playground/Business.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -631,6 +631,9 @@ export default {
631631
},
632632
633633
getStatusTooltip(company) {
634+
if(company.status==='Approved') {
635+
return 'The business has been verified and approved.'
636+
}
634637
// If there are specific reasons, show them as a numbered list
635638
if (company.statusReasons && company.statusReasons.length) {
636639
const mappedReasons = company.statusReasons.map(r =>

src/views/playground/BusinessDetails.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
}
221221
222222
.breadcrumb-link:hover {
223-
color: #905ab0;
223+
color: #00000078; /* Bright blue on hover for clarity it's clickable */
224224
}
225225
226226
.company-title {

0 commit comments

Comments
 (0)