Fix TypeError: Cannot read properties of null (reading 'replace')

Fixes unable to edit tracker in mobile view.
This commit is contained in:
nathan 2023-01-02 16:20:50 -07:00
parent 82ae5aa939
commit ac1d8b6be8

View File

@ -521,7 +521,7 @@ 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"))
{
let widget_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;