Skip to content

Commit

Permalink
DYN-5787 LuceneNET in the InCanvasSearch Bug Fix (#14030)
Browse files Browse the repository at this point in the history
fix: Some nodes like "Color Palette" or "String from Object" were not appearing in the Search, with this fix they are now appearing.
  • Loading branch information
RobertGlobant20 authored May 30, 2023
1 parent 4e9d2ef commit 56c4f98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DynamoCore/Models/DynamoModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3262,7 +3262,7 @@ private NodeModelSearchElement AddNodeTypeToSearch(TypeLoadData typeLoadData)
return null;
}
var node = new NodeModelSearchElement(typeLoadData);
SearchModel?.Add(new NodeModelSearchElement(typeLoadData));
SearchModel?.Add(node);
return node;
}

Expand Down

0 comments on commit 56c4f98

Please sign in to comment.