Fix infinite loop when using namespace

This commit is contained in:
nathan 2024-11-13 11:51:10 -07:00
parent 85e70fe9e7
commit 2246ec3a43

View File

@ -472,9 +472,9 @@ export class Et2Template extends Et2Widget(LitElement)
if(this.content) if(this.content)
{ {
const old_id = this.id; const old_id = this.id;
this.id = this.content; this._widget_id = this.content;
super.checkCreateNamespace.apply(this, arguments); super.checkCreateNamespace.apply(this, arguments);
this.id = old_id; this._widget_id = old_id;
} }
} }