Fix table component infinite scroll

This commit is contained in:
Anton 2024-01-15 16:22:00 +01:00
parent d4b68407ef
commit fe61d6e169

View file

@ -252,7 +252,11 @@ export default {
watch: {
reloadingTable() {
if (this.reloadingTable) {
this.loadData();
if (this.scrollMode === 'pages') {
this.loadData();
} else {
this.reloadTable();
}
}
},
currentViewRender() {