Skip to content

Commit 42b4c49

Browse files
authored
Update ignored keys in AddNetworkOffering.vue
1 parent 34f055d commit 42b4c49

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ui/src/views/offering/AddNetworkOffering.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,8 +120,6 @@
120120
<a-switch v-model:checked="form.specifyipranges" />
121121
</a-form-item>
122122
</a-col>
123-
<a-col :md="12" :lg="12">
124-
</a-col>
125123
</a-row>
126124
<a-row :gutter="12">
127125
<a-col :md="12" :lg="12">
@@ -1123,7 +1121,7 @@ export default {
11231121
11241122
var keys = Object.keys(values)
11251123
const detailsKey = ['promiscuousmode', 'macaddresschanges', 'forgedtransmits', 'maclearning']
1126-
const ignoredKeys = [...detailsKey, 'state', 'status', 'allocationstate', 'forvpc', 'lbType', 'specifyvlan', 'ispublic', 'domainid', 'zoneid', 'egressdefaultpolicy', 'isolation', 'supportspublicaccess']
1124+
const ignoredKeys = [...detailsKey, 'state', 'status', 'allocationstate', 'forvpc', 'lbType', 'specifyvlan', 'ispublic', 'domainid', 'zoneid', 'egressdefaultpolicy', 'isolation', 'supportspublicaccess', 'specifyipranges']
11271125
keys.forEach(function (key, keyIndex) {
11281126
if (!ignoredKeys.includes(key) &&
11291127
values[key] != null && values[key] !== undefined &&

0 commit comments

Comments
 (0)