noRedundancies = false
+ // Prevent layout shift for redundancy stats
+ dataLoaded = false
+
private bytesPipe: BytesPipe
constructor (
}
protected reloadDataInternal () {
+ this.dataLoaded = false
+
const options = {
pagination: this.pagination,
sort: this.sort,
next: resultList => {
this.videoRedundancies = resultList.data
this.totalRecords = resultList.total
+
+ this.dataLoaded = true
},
- error: err => this.notifier.error(err.message)
+ error: err => this.notifier.error(err.message),
})
}