Skip to content

Commit 5e2d055

Browse files
shwstpprdhslove
authored andcommitted
ui: fix advance setting behaviour in autoscale form (apache#11306)
Fixes apache#11269 The current dysfunctional behaviour was introduced in apache#6571. In advanced settings interface for ssh keypairs, userdata, affinity group, etc are show but the toggle to show/hide them was not working correctly. Signed-off-by: Abhishek Kumar <[email protected]>
1 parent 7636151 commit 5e2d055

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/views/compute/CreateAutoScaleVmGroup.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@
737737
{{ $t('label.isadvanced') }}
738738
<a-switch v-model:checked="showDetails" style="margin-left: 10px"/>
739739
</span>
740-
<div style="margin-top: 15px" v-show="showDetails">
740+
<div style="margin-top: 15px" v-if="showDetails">
741741
<a-form-item :label="$t('label.sshkeypairs')">
742742
<ssh-key-pair-selection
743743
:items="options.sshKeyPairs"

0 commit comments

Comments
 (0)