mirror of
https://github.com/gotson/komga.git
synced 2026-05-09 05:10:19 +02:00
fix(webui): incorrect data reload on received events
This commit is contained in:
parent
ca054f642f
commit
44bd09ac0b
1 changed files with 1 additions and 1 deletions
|
|
@ -484,7 +484,7 @@ export default Vue.extend({
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
reloadPage: throttle(function (this: any) {
|
reloadPage: throttle(function (this: any) {
|
||||||
this.loadPage(this.libraryId, this.page, this.sortActive)
|
this.loadPage(this.libraryId, this.page, this.sortActive, this.searchRegex)
|
||||||
}, 1000),
|
}, 1000),
|
||||||
async loadPage(libraryId: string, page: number, sort: SortActive, searchRegex?: string) {
|
async loadPage(libraryId: string, page: number, sort: SortActive, searchRegex?: string) {
|
||||||
this.selectedSeries = []
|
this.selectedSeries = []
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue