From ea4ebc58b3517869d02e315d0005f2f890b37169 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20DOREAU?= Date: Thu, 24 Sep 2020 12:10:37 +0200 Subject: [PATCH] fix(core): remove multi-select all results option --- packages/core/src/components/Select/Select.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/core/src/components/Select/Select.tsx b/packages/core/src/components/Select/Select.tsx index 995e33f489..a2efcc7725 100644 --- a/packages/core/src/components/Select/Select.tsx +++ b/packages/core/src/components/Select/Select.tsx @@ -195,7 +195,9 @@ export const SelectComponent = (props: SelectProps) => { getContentAnchorEl: null, }} > - {placeholder && {placeholder}} + {placeholder && !multiple && ( + {placeholder} + )} {items && items.map(item => (