From 1b607b63571a5ca3e43e212185229c45cfd7c5c8 Mon Sep 17 00:00:00 2001 From: Cees Bos Date: Fri, 7 Mar 2025 16:34:58 +0100 Subject: [PATCH] Update schema based on review --- .schema/config-schema.json | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.schema/config-schema.json b/.schema/config-schema.json index ddf0bec..eaea0b7 100644 --- a/.schema/config-schema.json +++ b/.schema/config-schema.json @@ -105,7 +105,7 @@ "properties": { "name": { "type": "string", - "description": "Name as soon in the navbar" + "description": "Name as seen in the navbar" }, "icon": { "type": "string", @@ -121,7 +121,6 @@ } }, "required": [ - "name", "url" ], "title": "Link" @@ -298,8 +297,15 @@ "description": "Define hotkeys, for example for search" }, "footer": { - "type": "string", - "description": "HTML shown as footer" + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "string" + } + ], + "description": "footer Line content. HTML is supported. Set false if you want to hide it." }, "columns": { "type": "string",