From a4932a1a8c433a232dd9e35f439d73e1897f54a3 Mon Sep 17 00:00:00 2001 From: mokusone <14061880+mokusone@users.noreply.github.com> Date: Thu, 14 May 2026 22:12:51 +0200 Subject: [PATCH] fix(admin): remove invalid 'multiline' property from excludePatterns MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The JSON Config schema for type 'text' enforces additionalProperties:false and 'multiline' is not a documented property. Its presence caused the admin UI to fail schema validation and refuse to render the panel. Multi-line behaviour is already provided by 'minRows: 6' alone — the schema explicitly states: "Set this attribute to 2 or more if you want to have a textarea with more than one row." Co-Authored-By: Claude Opus 4.7 (1M context) --- admin/jsonConfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/admin/jsonConfig.json b/admin/jsonConfig.json index 1355561..c320740 100644 --- a/admin/jsonConfig.json +++ b/admin/jsonConfig.json @@ -47,7 +47,6 @@ "type": "text", "label": "Exclude patterns (one per line)", "help": "Glob patterns, * wildcard. Lines starting with # are comments. Empty = filter off.", - "multiline": true, "minRows": 6, "sm": 12 },