Merge master

This commit is contained in:
Pieter Vander Vennet 2022-01-24 00:59:23 +01:00
commit 36caf511cf
6 changed files with 286 additions and 7 deletions

View file

@ -72,7 +72,7 @@ class LayerOverviewUtils {
const dict = new Map<string, TagRenderingConfigJson>();
for (const key in questions["default"]) {
if(key==="id"){
if(key === "id"){
continue
}
questions[key].id = key;
@ -90,6 +90,9 @@ class LayerOverviewUtils {
}
dict.forEach((value, key) => {
if(key === "id"){
return
}
value.id = value.id ?? key;
})