mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-06 06:48:21 +00:00
Now widget can go on top of the another widgets (#2444)
This commit is contained in:
parent
60f515d19c
commit
24fa916abb
1 changed files with 6 additions and 0 deletions
|
|
@ -3,12 +3,15 @@ import React, { useState, useEffect, useRef } from 'react';
|
|||
import SelectSearch, { fuzzySearch } from 'react-select-search';
|
||||
|
||||
export const Multiselect = function Multiselect({
|
||||
id,
|
||||
component,
|
||||
height,
|
||||
properties,
|
||||
styles,
|
||||
exposedVariables,
|
||||
setExposedVariable,
|
||||
fireEvent,
|
||||
onComponentClick,
|
||||
}) {
|
||||
const { label, value, values, display_values } = properties;
|
||||
const { borderRadius, visibility, disabledState } = styles;
|
||||
|
|
@ -87,6 +90,9 @@ export const Multiselect = function Multiselect({
|
|||
placeholder="Select.."
|
||||
ref={selectRef}
|
||||
closeOnSelect={false}
|
||||
onFocus={(event) => {
|
||||
onComponentClick(id, component, event);
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue