Skip to content

Commit

Permalink
fix: select Long option style problem (#5030)
Browse files Browse the repository at this point in the history
  • Loading branch information
DesignHhuang authored Dec 5, 2024
1 parent 7ab0025 commit 05b4b61
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/@core/ui-kit/form-ui/src/form-render/form-field.vue
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,11 @@ function autofocus() {
>
{{ label }}
</FormLabel>
<div :class="cn('relative flex w-full items-center', wrapperClass)">
<div
:class="
cn('relative flex w-full items-center overflow-hidden', wrapperClass)
"
>
<FormControl :class="cn(controlClass)">
<slot
v-bind="{
Expand Down

1 comment on commit 05b4b61

@mynetfan
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

此修改会导致校验信息不显示

Please sign in to comment.