fix(admin): remove invalid 'multiline' property from excludePatterns
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) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.7
parent
7b5679a753
commit
a4932a1a8c
@@ -47,7 +47,6 @@
|
|||||||
"type": "text",
|
"type": "text",
|
||||||
"label": "Exclude patterns (one per line)",
|
"label": "Exclude patterns (one per line)",
|
||||||
"help": "Glob patterns, * wildcard. Lines starting with # are comments. Empty = filter off.",
|
"help": "Glob patterns, * wildcard. Lines starting with # are comments. Empty = filter off.",
|
||||||
"multiline": true,
|
|
||||||
"minRows": 6,
|
"minRows": 6,
|
||||||
"sm": 12
|
"sm": 12
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user