From 4880bb1df9aa0e86cc2748211c8cc96e729f0b58 Mon Sep 17 00:00:00 2001 From: Neshura Date: Fri, 6 Jan 2023 00:34:00 +0100 Subject: [PATCH] Added additional optional entries to card type Now includes 1-liner description, optional warning, optional external link and optional external name --- interfaces/CardTypes.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/interfaces/CardTypes.ts b/interfaces/CardTypes.ts index aabe411..e2a9b74 100644 --- a/interfaces/CardTypes.ts +++ b/interfaces/CardTypes.ts @@ -15,8 +15,11 @@ export interface Service { name: string, icon: string, href: string, + desc1?: string, desc: string, - warn: string, + warn?: string, + extLink?: string, + extName?: string, type: ServiceType, docker_container_name: string, location: ServiceLocation,