Crash with <$genesis $type="" />

Fixes #7140
This commit is contained in:
jeremy@jermolene.com 2022-12-20 16:45:29 +00:00
parent 55d9a5e16d
commit b37a356b5e
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ ElementWidget.prototype.render = function(parent,nextSibling) {
this.parentDomNode = parent;
this.computeAttributes();
// Neuter blacklisted elements
this.tag = this.parseTreeNode.tag;
this.tag = this.parseTreeNode.tag || "span";
if($tw.config.htmlUnsafeElements.indexOf(this.tag) !== -1) {
this.tag = "safe-" + this.tag;
}