Skip to content

Commit

Permalink
modified checkbox in ui
Browse files Browse the repository at this point in the history
  • Loading branch information
amberchow8 authored and ross3102 committed Dec 9, 2023
1 parent ea5eb11 commit 61a4516
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,12 @@ queryClient
</ElFormItem>
</template>
<template v-else-if="option.type == 'checkbox'">
<ElFormItem :label="option.name">
<ElCheckbox v-model="formValues[option._id]" />
<ElFormItem>
<ElCheckbox
v-model="formValues[option._id]"
:label="option.name"
size="large"
/>
</ElFormItem>
</template>
</div>
Expand Down

0 comments on commit 61a4516

Please sign in to comment.