mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-13 23:16:47 +00:00
Game-主题搜索功能
This commit is contained in:
@@ -37,9 +37,9 @@ export default function SideBarContent({ allNavPages, siteInfo }) {
|
||||
const filtered = allGames?.filter(item => {
|
||||
return (
|
||||
item.title.toLowerCase().includes(search.toLowerCase()) ||
|
||||
item.id.toLowerCase().includes(search.toLowerCase()) ||
|
||||
item.id
|
||||
.toLowerCase()
|
||||
item.short_id?.toLowerCase().includes(search.toLowerCase()) ||
|
||||
item.short_id
|
||||
?.toLowerCase()
|
||||
.replace('-', '')
|
||||
.includes(search.toLowerCase().replace('-', ''))
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user