We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63a9da9 commit 177f048Copy full SHA for 177f048
1 file changed
ui/src/views/infra/AddPrimaryStorage.vue
@@ -514,7 +514,9 @@ export default {
514
} else {
515
this.protocols = ['nfs']
516
}
517
- this.form.protocol = this.protocols[0]
+ if (!value) {
518
+ this.form.protocol = this.protocols[0]
519
+ }
520
},
521
nfsURL (server, path) {
522
var url
@@ -642,7 +644,7 @@ export default {
642
644
this.protocols = ['custom']
643
645
this.form.protocol = 'custom'
646
- this.fetchHypervisor(null)
647
+ this.fetchHypervisor(value)
648
649
650
closeModal () {
0 commit comments