mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 06:56:05 +00:00
list row without id, fallback to index
This commit is contained in:
@@ -3165,7 +3165,7 @@ class ListRecordView extends View {
|
||||
* @param {function(module:view):void} [callback] A callback.
|
||||
*/
|
||||
buildRow(i, model, callback) {
|
||||
const key = model.id;
|
||||
const key = model.id ?? i.toString();
|
||||
|
||||
this.rowList.push(key);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user