Skip to content

Commit

Permalink
fix(ui): casting boolean values on resume dialog (#4498)
Browse files Browse the repository at this point in the history
  • Loading branch information
MilosPaunovic authored and Skraye committed Aug 1, 2024
1 parent 1620c21 commit 76b5022
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions ui/src/components/inputs/InputsForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,11 @@
v-if="input.type === 'BOOLEAN'"
v-model="inputs[input.id]"
@update:model-value="onChange"
class="w-100"
>
<el-radio-button :label="$t('true')" value="true" />
<el-radio-button :label="$t('false')" value="false" />
<el-radio-button :label="$t('undefined')" value="undefined" />
<el-radio-button :label="$t('true')" :value="true" />
<el-radio-button :label="$t('false')" :value="false" />
<el-radio-button :label="$t('undefined')" :value="undefined" />
</el-radio-group>
<el-date-picker
v-if="input.type === 'DATETIME'"
Expand Down Expand Up @@ -220,4 +221,4 @@
font-size: var(--font-size-xs);
color: var(--bs-gray-700);
}
</style>
</style>

0 comments on commit 76b5022

Please sign in to comment.