AppHeader.vue (408657262515e015a2964aafb8a1c76fb5259699) | AppHeader.vue (a3cbc659093a349adb998b36b16fbb382109868f) |
---|---|
1<template> 2 <div> 3 <header id="page-header"> 4 <a role="link" class="link-skip-nav btn btn-light" href="#main-content"> 5 {{ $t('appHeader.skipToContent') }} 6 </a> 7 8 <b-navbar --- 78 unchanged lines hidden (view full) --- 87 return this.$store.getters['eventLog/healthStatus']; 88 }, 89 hostStatusIcon() { 90 switch (this.hostStatus) { 91 case 'on': 92 return 'success'; 93 case 'error': 94 return 'danger'; | 1<template> 2 <div> 3 <header id="page-header"> 4 <a role="link" class="link-skip-nav btn btn-light" href="#main-content"> 5 {{ $t('appHeader.skipToContent') }} 6 </a> 7 8 <b-navbar --- 78 unchanged lines hidden (view full) --- 87 return this.$store.getters['eventLog/healthStatus']; 88 }, 89 hostStatusIcon() { 90 switch (this.hostStatus) { 91 case 'on': 92 return 'success'; 93 case 'error': 94 return 'danger'; |
95 case 'diagnosticMode': 96 return 'warning'; |
|
95 case 'off': 96 default: 97 return 'secondary'; 98 } 99 }, 100 healthStatusIcon() { 101 switch (this.healthStatus) { 102 case 'good': --- 101 unchanged lines hidden --- | 97 case 'off': 98 default: 99 return 'secondary'; 100 } 101 }, 102 healthStatusIcon() { 103 switch (this.healthStatus) { 104 case 'good': --- 101 unchanged lines hidden --- |