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 }