diff --git a/src/Libraries/CoreNodeModels/Selection.cs b/src/Libraries/CoreNodeModels/Selection.cs index b10f892ee73..4ca07a479b4 100644 --- a/src/Libraries/CoreNodeModels/Selection.cs +++ b/src/Libraries/CoreNodeModels/Selection.cs @@ -238,7 +238,7 @@ protected virtual string FormatSelectionText(IEnumerable elements) { if (elements.Any()) { - string text = string.Join(", ", SelectionResults.Take(20).Select(x => x.ToString())); + string text = string.Join(", ", elements.Take(20).Select(x => x.ToString())); if (elements.Count() > 20) {