From bfddc4ba9042ccdb434f149239c6162d31d440c8 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Thu, 17 Feb 2022 18:24:45 +0200 Subject: [PATCH] fix --- client/src/views/record/list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/views/record/list.js b/client/src/views/record/list.js index ed6929b223..a5e64d5e16 100644 --- a/client/src/views/record/list.js +++ b/client/src/views/record/list.js @@ -1600,7 +1600,7 @@ define( return; } - if (options.previousDataList) { + if (options && options.previousDataList) { let currentDataList = this.collection.models.map(model => { return Espo.Utils.cloneDeep(model.attributes); });