Hide status icon if severity is empty

Status icon was hidden if severity is empty on events log page
More details: https://github.com/openbmc/webui-vue/issues/16

Signed-off-by: Mateusz Gapski <mateuszx.gapski@intel.com>
Change-Id: I905b30dfbb71bed8a0874e9fb38ff40c301477e9
diff --git a/src/views/Health/EventLogs/EventLogs.vue b/src/views/Health/EventLogs/EventLogs.vue
index 488efca..d4bfc6f 100644
--- a/src/views/Health/EventLogs/EventLogs.vue
+++ b/src/views/Health/EventLogs/EventLogs.vue
@@ -77,7 +77,7 @@
 
           <!-- Severity column -->
           <template v-slot:cell(severity)="{ value }">
-            <status-icon :status="statusIcon(value)" />
+            <status-icon v-if="value" :status="statusIcon(value)" />
             {{ value }}
           </template>