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.js
CHANGED
@@ -47128,9 +47128,11 @@ var RecipeForm = function (_a) {
|
|
47128
47128
|
};
|
47129
47129
|
alias && Object.keys(alias).forEach(function (key) {
|
47130
47130
|
if (key in inputInfo) {
|
47131
|
-
// if the alias is DAGGenericInputAlias
|
47131
|
+
// if the alias is DAGGenericInputAlias
|
47132
|
+
// or DAGLinkedInputAlias use the native input type
|
47132
47133
|
if (key == 'type') {
|
47133
|
-
if (alias[key]
|
47134
|
+
if (alias[key] === 'DAGGenericInputAlias'
|
47135
|
+
|| alias[key] === 'DAGLinkedInputAlias') {
|
47134
47136
|
return;
|
47135
47137
|
}
|
47136
47138
|
}
|