Stricter layer checking

This commit is contained in:
Pieter Vander Vennet 2021-11-08 03:00:58 +01:00
parent 18c53af27f
commit 3334e0d384
5 changed files with 42 additions and 258 deletions

View file

@ -37,6 +37,8 @@ export default class SharedTagRenderings {
for (const key in icons) {
dict.set(key, <TagRenderingConfigJson>icons[key])
}
dict.forEach((value, key) => value.id = key)
return dict;
}