api limits

This commit is contained in:
Timo 2021-04-28 19:04:28 +03:00
parent 9fd916fa03
commit 1c3d853cb7
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ export class UserListingScreenComponent extends BaseListingComponent<User> imple
}
private async _loadData() {
this.allEntities = (await this._userControllerService.getAllUsers({ requestId: new Date().toISOString() }).toPromise()).users;
this.allEntities = (await this._userControllerService.getAllUsers({ requestId: new Date().toISOString() }, 0, 100).toPromise()).users;
this._executeSearchImmediately();
this._computeStats();
this.viewReady = true;

View File

@ -5,5 +5,5 @@
<redaction-annotation-icon *ngIf="hasImages" type="square" label="I" [color]="imageColor"></redaction-annotation-icon>
<redaction-annotation-icon *ngIf="needsWorkInput.hintsOnly" type="circle" label="H" [color]="hintColor"></redaction-annotation-icon>
<redaction-annotation-icon *ngIf="needsWorkInput.hasRequests" type="rhombus" label="S" [color]="suggestionColor"></redaction-annotation-icon>
<mat-icon svgIcon="red:ocr" *ngIf="hasAnnotationComments"></mat-icon>
<mat-icon svgIcon="red:comment" *ngIf="hasAnnotationComments"></mat-icon>
</div>