File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 234234 <template v-if =" column .key === ' allocationstate' " >
235235 <status :text =" text ? text : ''" displayText />
236236 </template >
237+ <template v-if =" column .key === ' redundantstate' " >
238+ <status v-if =" record && record.isredundantrouter" :text =" text ? text : ''" displayText />
239+ <status v-else :text =" 'N/A'" displayText :styles =" { 'min-width': '80px' }" />
240+ </template >
237241 <template v-if =" column .key === ' resourcestate' " >
238242 <status :text =" text ? text : ''" displayText />
239243 </template >
Original file line number Diff line number Diff line change @@ -120,6 +120,7 @@ export default {
120120 case ' success' :
121121 case ' poweron' :
122122 case ' syncing' :
123+ case ' primary' :
123124 status = ' success'
124125 break
125126 case ' alert' :
@@ -156,6 +157,7 @@ export default {
156157 case ' pending' :
157158 case ' unsecure' :
158159 case ' warning' :
160+ case ' backup' :
159161 status = ' warning'
160162 break
161163 }
You can’t perform that action at this time.
0 commit comments