Restore interactivity
This commit is contained in:
parent
418658a1e8
commit
20e67e463f
1 changed files with 1 additions and 1 deletions
|
@ -435,7 +435,7 @@ export class TagRendering extends UIElement implements TagDependantUIElement {
|
||||||
|
|
||||||
|
|
||||||
for (const oneOnOneElement of this._mapping) {
|
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
|
// We have found a matching key -> we use this template
|
||||||
return this.ApplyTemplate(oneOnOneElement.txt);
|
return this.ApplyTemplate(oneOnOneElement.txt);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue