From c4287009893402b03e34b8913e3b49d00bbb88f7 Mon Sep 17 00:00:00 2001 From: Paul Valerie GOMA Date: Tue, 22 Jul 2025 10:17:19 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20bug=20fixed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/hint/VHint.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/hint/VHint.vue b/src/components/hint/VHint.vue index 3edaf9d..9292fb2 100644 --- a/src/components/hint/VHint.vue +++ b/src/components/hint/VHint.vue @@ -15,7 +15,7 @@ const iconClass = computed(() => { switch (props.type) { case 'alert': return 'ri-spam-fill'; case 'warning' : return 'ri-alert-fill'; - case 'success' : return 'var(--text-default-success)'; + case 'success' : return 'ri-checkbox-circle-fill'; case 'info': return 'ri-information-fill'; default: return undefined;