We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddfb722 commit 031c212Copy full SHA for 031c212
1 file changed
client/src/pages/platform/workflow-editor/components/properties/Property.tsx
@@ -195,8 +195,10 @@ const Property = ({
195
key={`${currentNode?.name}_${currentComponent?.operationName}_${name}`}
196
>
197
{control &&
198
- (propertiesDataSource?.propertiesLookupDependsOn?.length ||
199
- optionsDataSource?.optionsLookupDependsOn?.length) && (
+ !!(
+ propertiesDataSource?.propertiesLookupDependsOn?.length ||
200
+ optionsDataSource?.optionsLookupDependsOn?.length
201
+ ) && (
202
<FormLookupValuesWatcher
203
arrayIndex={arrayIndex}
204
control={control}
0 commit comments