From 0d4d4dc9ed6316fa4d5a204aaff24203e2ad7a9e Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Sat, 25 Oct 2025 17:25:13 +0300 Subject: [PATCH] category folders fetch on refresh --- client/src/views/list-with-categories.js | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/client/src/views/list-with-categories.js b/client/src/views/list-with-categories.js index d156a52653..dc32d09d26 100644 --- a/client/src/views/list-with-categories.js +++ b/client/src/views/list-with-categories.js @@ -902,6 +902,16 @@ class ListWithCategories extends ListView { Espo.Ui.notify(); } + + /** + * @protected + */ + async actionFullRefresh() { + await Promise.all([ + super.actionFullRefresh(), + this.nestedCategoriesCollection?.fetch(), + ]); + } } export default ListWithCategories;