@integry/sdk 4.7.34 → 4.7.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -254,9 +254,6 @@ class FunctionForm extends Component<
|
|
|
254
254
|
value === 1;
|
|
255
255
|
break;
|
|
256
256
|
case 'number':
|
|
257
|
-
if (value) {
|
|
258
|
-
value = Number(value);
|
|
259
|
-
}
|
|
260
257
|
break;
|
|
261
258
|
case 'string':
|
|
262
259
|
value = String(value);
|
|
@@ -866,9 +863,8 @@ class FunctionForm extends Component<
|
|
|
866
863
|
? this.props.variables
|
|
867
864
|
: null}
|
|
868
865
|
isReadOnly=${isAIAssisted}
|
|
869
|
-
allowWorkspaceConnectedAccounts=${
|
|
870
|
-
|
|
871
|
-
}
|
|
866
|
+
allowWorkspaceConnectedAccounts=${!!this.props
|
|
867
|
+
.allowWorkspaceConnectedAccounts}
|
|
872
868
|
><//>
|
|
873
869
|
`,
|
|
874
870
|
)}
|
|
@@ -902,9 +898,8 @@ class FunctionForm extends Component<
|
|
|
902
898
|
isDisabled=${isAIAssisted}
|
|
903
899
|
isEditable=${false}
|
|
904
900
|
allowTagsInText=${true}
|
|
905
|
-
allowWorkspaceConnectedAccounts=${
|
|
906
|
-
|
|
907
|
-
}
|
|
901
|
+
allowWorkspaceConnectedAccounts=${!!this.props
|
|
902
|
+
.allowWorkspaceConnectedAccounts}
|
|
908
903
|
apiHandler=${this.props.apiHandler}
|
|
909
904
|
idKeyPath=${field.idKeyPath}
|
|
910
905
|
typeKeyPath=${field.typeKeyPath}
|