Added additional optional entries to card type
Now includes 1-liner description, optional warning, optional external link and optional external name
This commit is contained in:
parent
37841c6455
commit
4880bb1df9
1 changed files with 4 additions and 1 deletions
|
@ -15,8 +15,11 @@ export interface Service {
|
||||||
name: string,
|
name: string,
|
||||||
icon: string,
|
icon: string,
|
||||||
href: string,
|
href: string,
|
||||||
|
desc1?: string,
|
||||||
desc: string,
|
desc: string,
|
||||||
warn: string,
|
warn?: string,
|
||||||
|
extLink?: string,
|
||||||
|
extName?: string,
|
||||||
type: ServiceType,
|
type: ServiceType,
|
||||||
docker_container_name: string,
|
docker_container_name: string,
|
||||||
location: ServiceLocation,
|
location: ServiceLocation,
|
||||||
|
|
Loading…
Reference in a new issue