category folders fetch on refresh

This commit is contained in:
Yuri Kuznetsov
2025-10-25 17:25:13 +03:00
parent d69cfd8b31
commit 0d4d4dc9ed
+10
View File
@@ -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;