1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 19:42:24 +02:00

Fix loading data twice in rest tables

This commit is contained in:
Chocobozzz 2020-12-08 11:54:07 +01:00
parent 8e2392e512
commit 6c53d8bf1d
No known key found for this signature in database
GPG key ID: 583A612D890159BE
2 changed files with 2 additions and 2 deletions

View file

@ -110,8 +110,8 @@ export abstract class RestTable {
.subscribe(params => {
this.search = params.search || ''
// Primeng table will run an event to load data
this.setTableFilter(this.search)
this.loadData()
})
}