We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
showArrow
1 parent edb20d6 commit 666c17aCopy full SHA for 666c17a
packages/form/src/widgets/select/select.widget.ts
@@ -123,7 +123,7 @@ export class SelectWidget extends ControlUIWidget<SFSelectWidgetSchema> implemen
123
maxTagCount: maxTagCount || undefined,
124
optionHeightPx: optionHeightPx || 32,
125
optionOverflowSize: optionOverflowSize || 8,
126
- showArrow: typeof showArrow !== 'boolean' ? undefined : showArrow,
+ showArrow: toBool(showArrow, true),
127
compareWith: compareWith || ((o1: NzSafeAny, o2: NzSafeAny) => o1 === o2)
128
};
129
0 commit comments