From 5ceae3e1667ee92efdda6834d938ad7dd51ff542 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Wed, 20 Oct 2021 19:17:00 +0200 Subject: [PATCH] Tweak icons used in markdown alert box in config panel for consistency with icons used in diagnosis --- app/src/components/globals/formItems/ReadOnlyAlertItem.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/components/globals/formItems/ReadOnlyAlertItem.vue b/app/src/components/globals/formItems/ReadOnlyAlertItem.vue index 9f65713b..bc63ff6d 100644 --- a/app/src/components/globals/formItems/ReadOnlyAlertItem.vue +++ b/app/src/components/globals/formItems/ReadOnlyAlertItem.vue @@ -14,9 +14,9 @@ export default { data () { const icons = { success: 'thumbs-up', - info: 'info', + info: 'info-circle', warning: 'warning', - danger: 'ban' + danger: 'times' } return { icon_: (this.icon) ? this.icon : icons[this.type]