From b5445c0722010b96863da7475c0e11a35ab7a607 Mon Sep 17 00:00:00 2001 From: CzBiX Date: Tue, 8 Dec 2020 22:13:34 +0800 Subject: [PATCH] Fix warning color in logs --- src/components/dialogs/LogsDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/dialogs/LogsDialog.vue b/src/components/dialogs/LogsDialog.vue index 65841d8..18e49c3 100644 --- a/src/components/dialogs/LogsDialog.vue +++ b/src/components/dialogs/LogsDialog.vue @@ -63,7 +63,7 @@ import { Prop, Emit } from 'vue-property-decorator'; const map: any = { 1: null, 2: 'info--text', - 4: 'warn--text', + 4: 'warning--text', 8: 'error--text', }; return map[type];