From c23aa8e4a97c6c0311dce28088a46da21d01b5d6 Mon Sep 17 00:00:00 2001 From: Marek Szumny Date: Wed, 10 Apr 2024 22:12:59 +0200 Subject: [PATCH] companyUrl and repositoryName added to project properties --- src/components/ProjectInfo.vue | 19 +++++++++++++++---- src/types/IProject.ts | 2 ++ 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/src/components/ProjectInfo.vue b/src/components/ProjectInfo.vue index 65d04b3..2a2ac39 100644 --- a/src/components/ProjectInfo.vue +++ b/src/components/ProjectInfo.vue @@ -4,13 +4,22 @@ diff --git a/src/types/IProject.ts b/src/types/IProject.ts index f2b43c3..4bda2eb 100644 --- a/src/types/IProject.ts +++ b/src/types/IProject.ts @@ -73,6 +73,7 @@ export interface IProject { archivedUrl?: string; type: string; companyName?: string; + companyUrl?: string; thumbnail: string; summaryTitle: string; summary: string; @@ -81,6 +82,7 @@ export interface IProject { technologies: ITechnology[]; thumbnailLogo: string; featured: boolean; + repositoryName?: string; repositoryUrl?: string; } export interface ICompany {