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

@@ -30,7 +30,7 @@ export class RunnerCardController {
let responseCards: ResponseRunnerCard[] = new Array<ResponseRunnerCard>();
let cards: Array<RunnerCard>;
if (page) {
if (page != undefined) {
cards = await this.cardRepository.find({ relations: ['runner', 'runner.group', 'runner.group.parentGroup'], skip: page * page_size, take: page_size });
} else {
cards = await this.cardRepository.find({ relations: ['runner', 'runner.group', 'runner.group.parentGroup'] });