mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-07 13:59:30 +01:00
Fix Et2Widgets could have '.' in their DOM ID, replaced with '-' as before
This commit is contained in:
parent
2c18e0438a
commit
c4ecfd54a5
@ -458,7 +458,7 @@ const Et2WidgetMixin = <T extends Constructor>(superClass : T) =>
|
|||||||
{
|
{
|
||||||
path.unshift(this.getInstanceManager().uniqueId);
|
path.unshift(this.getInstanceManager().uniqueId);
|
||||||
}
|
}
|
||||||
path.push(value);
|
path.push(value.replace(/\./g, '-'));
|
||||||
dom_id = path.join("_");
|
dom_id = path.join("_");
|
||||||
}
|
}
|
||||||
this.setAttribute("id", dom_id);
|
this.setAttribute("id", dom_id);
|
||||||
|
Loading…
Reference in New Issue
Block a user