[fix] add a question mark icon if state is unkown

This commit is contained in:
2020-05-03 16:06:55 +02:00
parent e99f12d233
commit 8158f8376e

View File

@@ -31,7 +31,7 @@
if (watcher.state === 'FAILURE') { if (watcher.state === 'FAILURE') {
return ['fa-times', 'text-danger'] return ['fa-times', 'text-danger']
} }
return [] return ['fa-question']
} }
} }
} }