From 8158f8376e63f0a151c08418c382213d2665e2b4 Mon Sep 17 00:00:00 2001 From: cgeek Date: Sun, 3 May 2020 16:06:55 +0200 Subject: [PATCH] [fix] add a question mark icon if state is unkown --- src/webapp/Index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webapp/Index.vue b/src/webapp/Index.vue index d34c010..11c371d 100644 --- a/src/webapp/Index.vue +++ b/src/webapp/Index.vue @@ -31,7 +31,7 @@ if (watcher.state === 'FAILURE') { return ['fa-times', 'text-danger'] } - return [] + return ['fa-question'] } } }