We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e29044c commit 96858dbCopy full SHA for 96858db
2 files changed
ui/src/views/network/LoadBalancing.vue
@@ -554,7 +554,7 @@ export default {
554
vpcid: this.resource.vpcid
555
}).then(json => {
556
this.tiers.data = json.listnetworksresponse.network || []
557
- this.selectedTier = this.tiers.data && this.tiers.data[0].id ? this.tiers.data[0].id : null
+ this.selectedTier = this.tiers.data?.[0]?.id ? this.tiers.data[0].id : null
558
this.$forceUpdate()
559
}).catch(error => {
560
this.$notifyError(error)
ui/src/views/network/PortForwarding.vue
@@ -503,7 +503,6 @@ export default {
503
this.addVmModalNicLoading = false
504
this.nics = []
505
this.resetTagInputs()
506
- this.resetAllRules()
507
},
508
openTagsModal (id) {
509
this.tagsModalLoading = true
0 commit comments