1
0
Fork 1
mirror of https://github.com/maunium/stickerpicker synced 2024-09-18 00:20:52 +00:00

Enable searching by pack name

This commit is contained in:
Adele Reed 2023-06-23 13:04:20 -07:00
parent f59406a47a
commit cbbadac979

View file

@ -109,6 +109,7 @@ class App extends Component {
const packsWithFilteredStickers = allPacks.map(pack => ({
...pack,
stickers: pack.stickers.filter(sticker =>
sanitizeString(pack.title).includes(searchTerm) ||
sanitizeString(sticker.body).includes(searchTerm) ||
sanitizeString(sticker.id).includes(searchTerm)
),