@arquimedes.co/eureka-forms 2.0.113 → 2.0.114
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.
|
@@ -116,6 +116,10 @@ function ApiSelectorComponent(_a) {
|
|
|
116
116
|
}
|
|
117
117
|
else if (typeof currentValue === 'string')
|
|
118
118
|
params.set(filter.key, currentValue);
|
|
119
|
+
else if (step.url.includes('capta.co') &&
|
|
120
|
+
currentValue._id) {
|
|
121
|
+
params.set(filter.key, currentValue._id);
|
|
122
|
+
}
|
|
119
123
|
else
|
|
120
124
|
params.set(filter.key, (_d = currentValue.label) !== null && _d !== void 0 ? _d : currentValue.id);
|
|
121
125
|
}
|
package/package.json
CHANGED