mirror of https://github.com/rancher/ui.git
Fix errors of changing different source when creating new PVC
This commit is contained in:
parent
d4c41024aa
commit
991378665c
|
|
@ -5,7 +5,7 @@
|
|||
editing=editing
|
||||
valueLabel="cruPersistentVolume.cephfs.monitors.label"
|
||||
addActionLabel="cruPersistentVolume.cephfs.monitors.addActionLabel"
|
||||
changed=(action "updateOptions" "monitors")
|
||||
changed=(action (mut config.monitors))
|
||||
}}
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@
|
|||
editing=editing
|
||||
valueLabel="cruPersistentVolume.fc.targetWWNs.label"
|
||||
addActionLabel="cruPersistentVolume.fc.targetWWNs.addActionLabel"
|
||||
changed=(action "updateOptions" "targetWWNs")
|
||||
changed=(action (mut config.targetWWNs))
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -51,7 +51,7 @@
|
|||
editing=editing
|
||||
valueLabel="cruPersistentVolume.fc.wwids.label"
|
||||
addActionLabel="cruPersistentVolume.fc.wwids.addActionLabel"
|
||||
changed=(action "updateOptions" "wwids")
|
||||
changed=(action (mut config.wwids))
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -21,7 +21,7 @@
|
|||
editing=editing
|
||||
header=(t 'cruPersistentVolume.flexVolume.options.label')
|
||||
addActionLabel="cruPersistentVolume.flexVolume.options.addActionLabel"
|
||||
changed=(action "updateOptions" "options")
|
||||
changed=(action (mut config.options))
|
||||
}}
|
||||
</div>
|
||||
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@
|
|||
editing=editing
|
||||
valueLabel="cruPersistentVolume.iscsi.portals.label"
|
||||
addActionLabel="cruPersistentVolume.iscsi.portals.addActionLabel"
|
||||
changed=(action "updateOptions" "portals")
|
||||
changed=(action (mut config.portals))
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
editing=editing
|
||||
valueLabel="cruPersistentVolume.rbd.monitors.label"
|
||||
addActionLabel="cruPersistentVolume.rbd.monitors.addActionLabel"
|
||||
changed=(action "updateOptions" "monitors")
|
||||
changed=(action (mut config.monitors))
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@
|
|||
initialItems=config.items
|
||||
secretId=config.secretId
|
||||
editing=editing
|
||||
changed=(action "updateOptions" "items")
|
||||
changed=(action (mut config.items))
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue