Skip to content

Commit

Permalink
fix: MultiSelect emptyMessage prop not applied (#6894)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanpajon authored Jul 16, 2024
1 parent 1a71647 commit 824ff3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/multiselect/MultiSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ export const MultiSelect = React.memo(

return (
<div {...labelContainerProps}>
<div {...labelProps}>{content || props.placeholder || 'empty'}</div>
<div {...labelProps}>{content || props.placeholder || props.emptyMessage || 'empty'}</div>
</div>
);
};
Expand Down

0 comments on commit 824ff3a

Please sign in to comment.