From 167001bf283cbe994874b9e5345de2e28a04a222 Mon Sep 17 00:00:00 2001 From: Ivan Date: Tue, 16 Jul 2024 21:15:34 +0200 Subject: [PATCH] fix: MultiSelect emptyMessage prop not applied --- 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'}
); };