@integry/sdk 4.6.73 → 4.6.74
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
|
@@ -106,6 +106,9 @@ const DynamicFields = (props: DynamicFieldsProps) => {
|
|
|
106
106
|
setLoading(true);
|
|
107
107
|
try {
|
|
108
108
|
data = JSON.parse(endpointData);
|
|
109
|
+
if (tagsTree) {
|
|
110
|
+
data.allow_workspace_connected_accounts = true;
|
|
111
|
+
}
|
|
109
112
|
} catch (error) {
|
|
110
113
|
data = '';
|
|
111
114
|
}
|
|
@@ -230,7 +233,8 @@ const DynamicFields = (props: DynamicFieldsProps) => {
|
|
|
230
233
|
: html` <a
|
|
231
234
|
className=${styles.optionsRefresh}
|
|
232
235
|
href="#"
|
|
233
|
-
onclick=${() => {
|
|
236
|
+
onclick=${(e: Event) => {
|
|
237
|
+
e.preventDefault();
|
|
234
238
|
setLoading(true);
|
|
235
239
|
setIsErrorOnLoadingCustomFields(false);
|
|
236
240
|
fetchDynamicFields();
|