Restore interactivity

This commit is contained in:
Pieter Vander Vennet 2020-10-21 23:38:03 +02:00
parent 418658a1e8
commit 20e67e463f

View file

@ -435,7 +435,7 @@ export class TagRendering extends UIElement implements TagDependantUIElement {
for (const oneOnOneElement of this._mapping) {
if (oneOnOneElement.k.matches(tags)) {
if (oneOnOneElement.k === undefined || oneOnOneElement.k.matches(tags)) {
// We have found a matching key -> we use this template
return this.ApplyTemplate(oneOnOneElement.txt);
}