mirror of
https://github.com/maunium/stickerpicker
synced 2024-11-11 03:44:10 +00:00
Enable searching by pack name
This commit is contained in:
parent
f59406a47a
commit
cbbadac979
1 changed files with 1 additions and 0 deletions
|
@ -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)
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue