mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
Fix infinite loop when using namespace
This commit is contained in:
parent
85e70fe9e7
commit
2246ec3a43
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user