@integry/sdk 4.6.40 → 4.6.41

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.
@@ -11,7 +11,7 @@
11
11
  }
12
12
 
13
13
  .functionFieldAddBtn {
14
- padding: 0.5rem 1rem;
14
+ padding: 5px 10px;
15
15
  background-color: white;
16
16
  border: 1px solid #d1d5db;
17
17
  border-radius: 0.375rem;
@@ -206,7 +206,7 @@
206
206
  }
207
207
 
208
208
  .functionFieldConfig {
209
- min-height: 377px;
209
+ min-height: 358px;
210
210
  }
211
211
 
212
212
  .functionFieldConfigTitle {
@@ -2134,6 +2134,7 @@ class ActionForm extends Component<ActionFormPropsType, ActionFormStateType> {
2134
2134
  label="${el.title}"
2135
2135
  value=${el.default_value}
2136
2136
  apiHandler=${this.props.apiHandler}
2137
+ isArray=${!!(el.data_type === 'OBJECT[]')}
2137
2138
  onChange=${(
2138
2139
  val: string,
2139
2140
  passesRegexTest?: boolean,