diff --git a/components/Project/ProjectHeading.vue b/components/Project/ProjectHeading.vue index 1098ea8..fd8cd3b 100644 --- a/components/Project/ProjectHeading.vue +++ b/components/Project/ProjectHeading.vue @@ -1,5 +1,5 @@ {{ project.links?.github ? 'YES' : 'NO' }} - + @@ -79,7 +144,10 @@ const logo = props.project?.logos?.at(0)?.url
- + {{ project.blockchain_features?.network }} diff --git a/types/project.ts b/types/project.ts index 78b059e..d5915e4 100644 --- a/types/project.ts +++ b/types/project.ts @@ -143,3 +143,7 @@ export interface ProjectShallow { support?: number | undefined anonymity?: boolean | undefined } + +export interface ProjectIndexable extends Project { + [key: string]: any +}