From fce6246b4f3f32a096f22256779347d0bc1847bd Mon Sep 17 00:00:00 2001 From: Matt Bevilacqua Date: Mon, 20 Sep 2021 16:10:18 -0400 Subject: [PATCH] Fix z-index for multiselect, again (#430) * context textarea was overlapping multiselect * z-indexed the wrong thing --- frontend/src/components/MultiSelect.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/MultiSelect.js b/frontend/src/components/MultiSelect.js index 19379d5523..006d35b423 100644 --- a/frontend/src/components/MultiSelect.js +++ b/frontend/src/components/MultiSelect.js @@ -63,7 +63,6 @@ function MultiSelect({ return { ...provided, outline, - zIndex: 2, }; }, groupHeading: (provided) => ({ @@ -93,6 +92,10 @@ function MultiSelect({ marginRight: '4px', }), indicatorSeparator: () => ({ display: 'none' }), + menu: (provided) => ({ + ...provided, + zIndex: 2, + }), }; /*