fix(pagination) page=0 resulted in false thx JS

This commit is contained in:
2023-04-18 20:09:44 +02:00
parent f0e20e4130
commit fcee3909f4
14 changed files with 14 additions and 14 deletions

View File

@@ -28,7 +28,7 @@ export class StatsClientController {
let responseClients: ResponseStatsClient[] = new Array<ResponseStatsClient>();
let clients: Array<StatsClient>;
if (page) {
if (page != undefined) {
clients = await this.clientRepository.find({ skip: page * page_size, take: page_size });
} else {
clients = await this.clientRepository.find();