fixed model list view error for unpaginated lists

This commit is contained in:
vabene1111 2021-10-01 18:55:16 +02:00
parent d510b521af
commit 823c5d3975
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -144,7 +144,7 @@ export default {
this.paginated = this.this_model?.paginated ?? false
this.$nextTick(() => {
if (!this.paginated) {
this.getItems()
this.getItems({page:1},'left')
}
})