mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-22 08:28:35 +00:00
FX toggle not appearing on hover (#13007)
This commit is contained in:
parent
0414abb29c
commit
1d15cddbfd
1 changed files with 1 additions and 1 deletions
|
|
@ -525,7 +525,7 @@ const DynamicEditorBridge = (props) => {
|
|||
}, [component, fxActive]);
|
||||
|
||||
const renderFx = () => {
|
||||
if (paramType === 'query' || (paramLabel !== 'Type' && isFxNotRequired === undefined)) {
|
||||
if (paramType === 'query' || !(paramLabel !== 'Type' && isFxNotRequired === undefined)) {
|
||||
return null;
|
||||
}
|
||||
return (
|
||||
|
|
|
|||
Loading…
Reference in a new issue