We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fbd0a9 commit 175eed2Copy full SHA for 175eed2
ui/src/views/infra/UpdatePrimaryStorage.vue
@@ -121,7 +121,6 @@ export default {
121
},
122
created () {
123
this.initForm()
124
- this.form.name = this.resource.name
125
126
computed: {
127
canUpdateNFSMountOpts () {
@@ -136,7 +135,14 @@ export default {
136
135
methods: {
137
initForm () {
138
this.formRef = ref()
139
- this.form = reactive({ })
+ this.form = reactive({
+ name: this.resource.name,
140
+ tags: this.resource.tags,
141
+ isTagARule: this.resource.istagarule,
142
+ capacityBytes: this.resource.disksizetotal,
143
+ capacityIOPS: this.resource.capacityiops,
144
+ nfsMountOpts: this.resource.nfsmountopts
145
+ })
146
this.rules = reactive({ })
147
148
isAdmin () {
0 commit comments