diff --git a/frontend/src/Editor/Components/DropDown.jsx b/frontend/src/Editor/Components/DropDown.jsx index 7a57f0c3aa..ece706326b 100644 --- a/frontend/src/Editor/Components/DropDown.jsx +++ b/frontend/src/Editor/Components/DropDown.jsx @@ -42,27 +42,29 @@ export const DropDown = function DropDown({ height, validate, properties, styles }, [JSON.stringify(values)]); return ( -
-
- -
-
- { - setCurrentValue(newVal); - setExposedVariable('value', newVal).then(() => fireEvent('onSelect')); - }} - filterOptions={fuzzySearch} - placeholder="Select.." - /> + <> +
+
+ +
+
+ { + setCurrentValue(newVal); + setExposedVariable('value', newVal).then(() => fireEvent('onSelect')); + }} + filterOptions={fuzzySearch} + placeholder="Select.." + /> +
{validationError}
-
+ ); };