From 5ae4194f8bcbc4c983aec27f458c50a86b4c3a36 Mon Sep 17 00:00:00 2001 From: Madhav Nagpal <32056977+madhavnagpal@users.noreply.github.com> Date: Sun, 1 Oct 2023 10:05:56 +0530 Subject: [PATCH] fix(options-list): made menu options accessible --- src/OptionList/List.tsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/OptionList/List.tsx b/src/OptionList/List.tsx index 9b0ce3a4..78d8d5dd 100644 --- a/src/OptionList/List.tsx +++ b/src/OptionList/List.tsx @@ -222,6 +222,8 @@ const RawOptionList = React.forwardRef(( ); }); + const messages = activeValueCells.join(" / ") + // >>>>> Render return ( @@ -234,6 +236,22 @@ const RawOptionList = React.forwardRef(( > {columnNodes} +
+ {messages} +
); });