Skip to content

Commit

Permalink
fix(form:select): fix incorrect default value of showArrow (#1816)
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk authored Jul 15, 2024
1 parent edb20d6 commit 666c17a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/form/src/widgets/select/select.widget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export class SelectWidget extends ControlUIWidget<SFSelectWidgetSchema> implemen
maxTagCount: maxTagCount || undefined,
optionHeightPx: optionHeightPx || 32,
optionOverflowSize: optionOverflowSize || 8,
showArrow: typeof showArrow !== 'boolean' ? undefined : showArrow,
showArrow: toBool(showArrow, true),
compareWith: compareWith || ((o1: NzSafeAny, o2: NzSafeAny) => o1 === o2)
};

Expand Down

0 comments on commit 666c17a

Please sign in to comment.