Skip to content

Commit

Permalink
rename form field to camel case
Browse files Browse the repository at this point in the history
  • Loading branch information
DaanHoogland committed Nov 1, 2023
1 parent 3b11663 commit fbc94bd
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions ui/src/views/image/RegisterOrUploadTemplate.vue
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@
</a-form-item>
</a-col>
<a-col :md="24" :lg="12" v-if="hyperVMWShow && !deployasis">
<a-form-item :label="$t('label.nicadaptertype')" name="nicadaptertype" ref="nicadaptertype">
<a-form-item ref="nicAdapterType" name="nicAdapterType" :label="$t('label.nicadaptertype')">
<a-select
v-model:value="form.nicAdapterType"
showSearch
Expand Down Expand Up @@ -701,30 +701,30 @@ export default {
this.rootDisk.opts = controller
},
fetchNicAdapterType () {
const nicAdapterType = []
nicAdapterType.push({
fetchNicAdapterTypes () {
const nicAdapterTypes = []
nicAdapterTypes.push({
id: '',
description: ''
})
nicAdapterType.push({
nicAdapterTypes.push({
id: 'E1000',
description: 'E1000'
})
nicAdapterType.push({
nicAdapterTypes.push({
id: 'PCNet32',
description: 'PCNet32'
})
nicAdapterType.push({
nicAdapterTypes.push({
id: 'Vmxnet2',
description: 'Vmxnet2'
})
nicAdapterType.push({
nicAdapterTypes.push({
id: 'Vmxnet3',
description: 'Vmxnet3'
})
this.nicAdapterType.opts = nicAdapterType
this.nicAdapterType.opts = nicAdapterTypes
},
fetchKeyboardType () {
const keyboardType = []
Expand Down Expand Up @@ -882,7 +882,7 @@ export default {
this.resetSelect(arrSelectReset)
this.fetchFormat(hyperVisor)
this.fetchRootDisk(hyperVisor)
this.fetchNicAdapterType()
this.fetchNicAdapterTypes()
this.fetchKeyboardType()
this.form.rootDiskControllerType = this.rootDisk.opts.length > 0 ? 'osdefault' : ''
Expand All @@ -897,10 +897,10 @@ export default {
delete this.form.zoneids
}
const formRaw = toRaw(this.form)
const values = this.handleRemoveFields(formRaw)
const formvalues = this.handleRemoveFields(formRaw)
let params = {}
for (const key in values) {
const input = values[key]
for (const key in formvalues) {
const input = formvalues[key]
if (input === undefined) {
continue
Expand Down

0 comments on commit fbc94bd

Please sign in to comment.