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.
@@ -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 use the native input type
47104
+ // if the alias is DAGGenericInputAlias
47105
+ // or DAGLinkedInputAlias use the native input type
47105
47106
  if (key == 'type') {
47106
- if (alias[key] == 'DAGGenericInputAlias') {
47107
+ if (alias[key] === 'DAGGenericInputAlias'
47108
+ || alias[key] === 'DAGLinkedInputAlias') {
47107
47109
  return;
47108
47110
  }
47109
47111
  }