pollination-react-io 1.90.0 → 1.90.1
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/build/index.esm.js +4 -2
- package/build/index.esm.js.map +1 -1
- package/build/index.js +4 -2
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.esm.js
CHANGED
@@ -47101,9 +47101,11 @@ var RecipeForm = function (_a) {
|
|
47101
47101
|
};
|
47102
47102
|
alias && Object.keys(alias).forEach(function (key) {
|
47103
47103
|
if (key in inputInfo) {
|
47104
|
-
// if the alias is DAGGenericInputAlias
|
47104
|
+
// if the alias is DAGGenericInputAlias
|
47105
|
+
// or DAGLinkedInputAlias use the native input type
|
47105
47106
|
if (key == 'type') {
|
47106
|
-
if (alias[key]
|
47107
|
+
if (alias[key] === 'DAGGenericInputAlias'
|
47108
|
+
|| alias[key] === 'DAGLinkedInputAlias') {
|
47107
47109
|
return;
|
47108
47110
|
}
|
47109
47111
|
}
|