From 5544f952330837f26bb9c2545e8c3668cae7b5d7 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 15 Apr 2025 12:26:17 +0200 Subject: [PATCH] Docs: move 'invalidValues' to correct level in the config --- .../Json/QuestionableTagRenderingConfigJson.ts | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts b/src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts index 1641c7ae55..65c70863cf 100644 --- a/src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts +++ b/src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts @@ -267,13 +267,7 @@ export interface QuestionableTagRenderingConfigJson extends TagRenderingConfigJs * group: expert */ default?: string - /** - * question: What tag combintations key should be interpreted as 'unknown'? - * For example, if a feature has `shop=yes`, the question 'what type of shop is this?' should still asked - * ifunset: The question will be considered answered if any value is set for the key - * group: expert - */ - invalidValues?: TagConfigJson + /** * question: If this key shared and distinguished by a postfix, what is the postfix? @@ -335,4 +329,12 @@ export interface QuestionableTagRenderingConfigJson extends TagRenderingConfigJs * question: What tags should be applied when the object is soft-deleted? */ onSoftDelete?: string[] + + /** + * question: What tag combintations key should be interpreted as 'unknown'? + * For example, if a feature has `shop=yes`, the question 'what type of shop is this?' should still asked + * ifunset: The question will be considered answered if any value is set for the key + * group: expert + */ + invalidValues?: TagConfigJson }