From 74277738698fd9014a6cd5e4043f717914bc863d Mon Sep 17 00:00:00 2001 From: Toppanto Bence Date: Tue, 4 Feb 2025 19:35:00 +0100 Subject: [PATCH] fix(ui-select): fix select's dropdown border radius INSTUI-4442 --- packages/ui-select/src/Select/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/ui-select/src/Select/index.tsx b/packages/ui-select/src/Select/index.tsx index a9b9b13d83..95412607bd 100644 --- a/packages/ui-select/src/Select/index.tsx +++ b/packages/ui-select/src/Select/index.tsx @@ -523,7 +523,8 @@ class Select extends Component { 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 }