Skip to content

Commit

Permalink
[FIX] Fixed drain worker form being uneditable
Browse files Browse the repository at this point in the history
  • Loading branch information
eva-vashkevich committed Dec 11, 2024
1 parent 050baf0 commit ca960ee
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions shell/dialog/DrainNode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export default {
<div class="pl-10 pr-10">
<div>
<RadioGroup
v-model="body.deleteLocalData"
v-model:value="body.deleteLocalData"
name="deleteLocalData"
:options="radioOptions"
:row="true"
Expand All @@ -157,7 +157,7 @@ export default {
</template>
</RadioGroup>
<RadioGroup
v-model="body.force"
v-model:value="body.force"
name="force"
:options="radioOptions"
:row="true"
Expand All @@ -168,7 +168,7 @@ export default {
</template>
</RadioGroup>
<RadioGroup
v-model="gracePeriod"
v-model:value="gracePeriod"
name="gracePeriod"
:options="gracePeriodOptions"
class="mb-15"
Expand All @@ -178,7 +178,7 @@ export default {
</template>
</RadioGroup>
<UnitInput
v-model="body.gracePeriod"
v-model:value="body.gracePeriod"
:mode="gracePeriod ? EDIT : VIEW"
type="number"
min="1"
Expand All @@ -187,7 +187,7 @@ export default {
class="mb-10"
/>
<RadioGroup
v-model="timeout"
v-model:value="timeout"
name="timeout"
:options="timeoutOptions"
class="mb-15"
Expand All @@ -197,7 +197,7 @@ export default {
</template>
</RadioGroup>
<UnitInput
v-model="body.timeout"
v-model:value="body.timeout"
:mode="timeout ? EDIT : VIEW"
type="number"
min="1"
Expand Down

0 comments on commit ca960ee

Please sign in to comment.