Skip to content

Commit

Permalink
fix(ui-select): fix select's dropdown border radius
Browse files Browse the repository at this point in the history
INSTUI-4442
  • Loading branch information
HerrTopi authored and matyasf committed Feb 14, 2025
1 parent e37aee9 commit 7427773
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/ui-select/src/Select/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,8 @@ class Select extends Component<SelectProps> {
optionsMaxHeight || this._optionHeight * visibleOptionsCount!,
maxWidth: optionsMaxWidth || this.width,
background: 'primary',
elementRef: (node: Element | null) => (this._listView = node)
elementRef: (node: Element | null) => (this._listView = node),
borderRadius: 'medium'
}
: { maxHeight: 0 }

Expand Down

0 comments on commit 7427773

Please sign in to comment.