mirror of https://github.com/rancher/ui.git
az checkboxes should be disabled when location without is selected
rancher/rancher#33019
This commit is contained in:
parent
3faf14ee84
commit
b12e9ac8f9
|
|
@ -111,7 +111,7 @@
|
|||
<Input
|
||||
@type="checkbox"
|
||||
@checked={{mut availablityZoneOne}}
|
||||
@disabled={{and disableAzs (not isNewOrEditable)}}
|
||||
@disabled={{or disableAzs (not isNewOrEditable)}}
|
||||
/>
|
||||
{{/if}}
|
||||
{{t "clusterNew.azureaks.availabilityZones.zone" loc=1}}
|
||||
|
|
@ -130,7 +130,7 @@
|
|||
<Input
|
||||
@type="checkbox"
|
||||
@checked={{mut availablityZoneTwo}}
|
||||
@disabled={{and disableAzs (not isNewOrEditable)}}
|
||||
@disabled={{or disableAzs (not isNewOrEditable)}}
|
||||
/>
|
||||
{{/if}}
|
||||
{{t "clusterNew.azureaks.availabilityZones.zone" loc=2}}
|
||||
|
|
@ -149,7 +149,7 @@
|
|||
<Input
|
||||
@type="checkbox"
|
||||
@checked={{mut availablityZoneThree}}
|
||||
@disabled={{and disableAzs (not isNewOrEditable)}}
|
||||
@disabled={{or disableAzs (not isNewOrEditable)}}
|
||||
/>
|
||||
{{/if}}
|
||||
{{t "clusterNew.azureaks.availabilityZones.zone" loc=3}}
|
||||
|
|
|
|||
Loading…
Reference in New Issue