Skip to content

Commit

Permalink
Revert "removing any duplicates"
Browse files Browse the repository at this point in the history
This reverts commit 8684a00.
  • Loading branch information
Robbie1977 committed Nov 16, 2022
1 parent 77f51f6 commit 1565c80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geppetto-ui/src/search/datasources/SOLRclient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ function refineResults(e) {
}
});

var sortedResults: Array<any> = Array.from(new Set(refinedResults.sort(sorter)));
var sortedResults: Array<any> = refinedResults.sort(sorter);
this.postMessage({resultMessage: "OK", params: {results: sortedResults}});
self.close();
}

0 comments on commit 1565c80

Please sign in to comment.