fix: update empty project link checking to fix search box input issue

This commit is contained in:
0xdevant 2024-06-27 18:33:30 +08:00
parent f175e2af3b
commit c8035c6ff9
No known key found for this signature in database
GPG Key ID: 3B0072B3F5B415CB
1 changed files with 6 additions and 5 deletions

View File

@ -45,10 +45,11 @@ export const useData = defineStore('data', () => {
const projectToShallow = (project: Project): ProjectShallow => {
const availableSupport = () => {
const filteredKeys = ['forum', 'discord', 'twitter', 'lens', 'farcaster', 'telegram']
if (typeof project.links === 'object' && (project.links !== null || project.links !== undefined))
return Object.keys(project.links).filter(key => filteredKeys.includes(key)).length
// if (typeof project.links === 'object' && (project.links !== null || project.links !== undefined))
if (project.links == null || project.links == undefined) return 0;
return 0
if (typeof project.links === 'object' && Object.keys(project.links).length > 0)
return Object.keys(project.links).filter(key => filteredKeys.includes(key)).length
}
return {
@ -96,8 +97,8 @@ export const useData = defineStore('data', () => {
.filter((project) => {
return (
project
&& project.title1
&& project.title1.toLowerCase().includes(query)
&& project.title1
&& project.title1.toLowerCase().includes(query)
)
}).filter((project) => {
if (filter.sortby === 'anonymity')