We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f3f02b commit e6058b0Copy full SHA for e6058b0
2 files changed
ui/src/views/network/IngressEgressRuleConfigure.vue
@@ -282,6 +282,9 @@ export default {
282
this.rules = this.tabType === 'ingress' ? this.resource.ingressrule : this.resource.egressrule
283
},
284
getCapitalise (val) {
285
+ if (!val) {
286
+ return
287
+ }
288
if (val === 'all') return this.$t('label.all')
289
return val.toUpperCase()
290
ui/src/views/network/LoadBalancing.vue
@@ -736,6 +736,9 @@ export default {
736
return 'Configure'
737
738
739
740
741
742
743
744
0 commit comments