mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
Merge pull request #10 from 0xdevant/fix/issue-when-input-on-search-box
fix: update empty project link checking to fix search box input issue
This commit is contained in:
commit
68f73dc19d
1 changed files with 7 additions and 5 deletions
|
@ -45,10 +45,12 @@ export const useData = defineStore('data', () => {
|
||||||
const projectToShallow = (project: Project): ProjectShallow => {
|
const projectToShallow = (project: Project): ProjectShallow => {
|
||||||
const availableSupport = () => {
|
const availableSupport = () => {
|
||||||
const filteredKeys = ['forum', 'discord', 'twitter', 'lens', 'farcaster', 'telegram']
|
const filteredKeys = ['forum', 'discord', 'twitter', 'lens', 'farcaster', 'telegram']
|
||||||
if (typeof project.links === 'object' && (project.links !== null || project.links !== undefined))
|
// if (typeof project.links === 'object' && (project.links !== null || project.links !== undefined))
|
||||||
return Object.keys(project.links).filter(key => filteredKeys.includes(key)).length
|
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 {
|
return {
|
||||||
|
|
Loading…
Reference in a new issue