mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:38 +01:00
Don't apply et2_required class to parent table cell
This commit is contained in:
parent
12956b594e
commit
d133683272
@ -521,7 +521,10 @@ export class et2_grid extends et2_DOMWidget implements et2_IDetachedDOM, et2_IAl
|
||||
// Apply widget's class to td, for backward compatability
|
||||
if (node.getAttribute("class"))
|
||||
{
|
||||
cell.class += (cell.class ? " " : "") + this.getArrayMgr("content").expandName(node.getAttribute("class"));
|
||||
let widget_class = this.getArrayMgr("content").expandName(node.getAttribute("class"))
|
||||
// Do not pass et2_required into parent cell, it looks bad
|
||||
.replace("et2_required", "")
|
||||
cell.class += (cell.class ? " " : "") + widget_class;
|
||||
}
|
||||
|
||||
// Create the element
|
||||
|
Loading…
Reference in New Issue
Block a user