Search improvements.

This commit is contained in:
pheralb
2023-12-14 13:30:23 +00:00
parent 37d40fe59c
commit 46701ad161
2 changed files with 52 additions and 5 deletions
+1 -1
View File
@@ -19,7 +19,7 @@
if (searchTerm.length === 0) {
filteredSvgs = svgsByCategory.sort((a: iSVG, b: iSVG) => {
return b.id - a.id;
return b.id! - a.id!;
});
}