1
0
Fork 0
mirror of synced 2024-10-03 02:27:06 +13:00
This commit is contained in:
Conor Mack 2020-09-15 13:28:51 +01:00
parent fa88c68c0e
commit 13f4502967

View file

@ -59,7 +59,7 @@
loading = true loading = true
selectedLetter = letter selectedLetter = letter
filteredIcons = findIconByTerm(letter) filteredIcons = findIconByTerm(letter)
await tick() await tick() //svg icons do not update without tick
loading = false loading = false
} }
@ -69,7 +69,7 @@
if (iconIdx !== -1) { if (iconIdx !== -1) {
currentPage = Math.ceil(iconIdx / maxIconsPerPage) currentPage = Math.ceil(iconIdx / maxIconsPerPage)
} }
await tick() await tick() //svg icons do not update without tick
loading = false loading = false
} }
@ -88,7 +88,7 @@
} else if (!next && currentPage > 1) { } else if (!next && currentPage > 1) {
currentPage-- currentPage--
} }
await tick() await tick() //svg icons do not update without tick
loading = false loading = false
} }
@ -96,7 +96,7 @@
currentPage = 1 currentPage = 1
loading = true loading = true
filteredIcons = findIconByTerm(searchTerm) filteredIcons = findIconByTerm(searchTerm)
await tick() await tick() //svg icons do not update without tick
loading = false loading = false
} }