From eeb93b51848a40b4bf984b709b36daf39fd9c0a7 Mon Sep 17 00:00:00 2001 From: pietervdvn Date: Wed, 27 Oct 2021 01:27:23 +0200 Subject: [PATCH] Make extra tags optional in mappings (as they should be) --- Models/ThemeConfig/Json/TagRenderingConfigJson.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Models/ThemeConfig/Json/TagRenderingConfigJson.ts b/Models/ThemeConfig/Json/TagRenderingConfigJson.ts index 6d35eff4f..58e112f4c 100644 --- a/Models/ThemeConfig/Json/TagRenderingConfigJson.ts +++ b/Models/ThemeConfig/Json/TagRenderingConfigJson.ts @@ -174,7 +174,7 @@ export interface TagRenderingConfigJson { * If chosen as answer, these tags will be applied as well onto the object. * Not compatible with multiAnswer */ - addExtraTags: string[] + addExtraTags?: string[] }[]