From 824ff3a2a57f030aec61b6291dc0c7f56c706dec Mon Sep 17 00:00:00 2001 From: Ivan Date: Tue, 16 Jul 2024 22:32:09 +0200 Subject: [PATCH] fix: MultiSelect emptyMessage prop not applied (#6894) --- components/lib/multiselect/MultiSelect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/multiselect/MultiSelect.js b/components/lib/multiselect/MultiSelect.js index cfcf0f826e..64e13dfd23 100644 --- a/components/lib/multiselect/MultiSelect.js +++ b/components/lib/multiselect/MultiSelect.js @@ -1030,7 +1030,7 @@ export const MultiSelect = React.memo( return (
-
{content || props.placeholder || 'empty'}
+
{content || props.placeholder || props.emptyMessage || 'empty'}
); };