nm - give the reason when it can't generate column name (no IDs)

This commit is contained in:
nathan 2022-08-16 09:22:57 -06:00
parent 660ba3368d
commit 8c7cfc3e69

View File

@ -1299,7 +1299,7 @@ export class et2_nextmatch extends et2_DOMWidget implements et2_IResizeable, et2
const colName = name + (name != "" && child_names.length > 0 ? "_" : "") + child_names.join("_");
if(colName == "")
{
this.egw().debug("info", "Unable to generate nm column name for ", _widget);
this.egw().debug("info", "Unable to generate nm column name for %o, no IDs", _widget);
}
return colName;
}