Apply suggestions from code review

Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
This commit is contained in:
GruberViktor 2022-03-11 20:16:53 +01:00 committed by GitHub
parent 1259911275
commit 6cbbd0c515
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -34,22 +34,22 @@
</svg>&nbsp;<span class="d-none d-lg-inline" i18n>More like this</span> </svg>&nbsp;<span class="d-none d-lg-inline" i18n>More like this</span>
</button> </button>
<button type="button" class="btn btn-sm btn-outline-primary me-2" (click)="close()"> <button type="button" class="btn btn-sm btn-outline-primary me-2" i18n-title title="Close" (click)="close()">
<svg class="buttonicon" fill="currentColor"> <svg class="buttonicon" fill="currentColor">
<use xlink:href="assets/bootstrap-icons.svg#x" /> <use xlink:href="assets/bootstrap-icons.svg#x" />
</svg>&nbsp;<span class="d-none d-lg-inline" i18n>Close</span> </svg>&nbsp;<span class="d-none d-lg-inline" i18n>Close</span>
</button> </button>
<div class="button-group"> <div class="button-group">
<button type="button" class="btn btn-sm btn-outline-primary me-2" (click)="previousDoc()" [disabled]="!hasPrevious()"> <button type="button" class="btn btn-sm btn-outline-primary me-2" i18n-title title="Previous" (click)="previousDoc()" [disabled]="!hasPrevious()">
<svg class="buttonicon" fill="currentColor"> <svg class="buttonicon" fill="currentColor">
<use xlink:href="assets/bootstrap-icons.svg#arrow-left" /> <use xlink:href="assets/bootstrap-icons.svg#arrow-left" />
</svg>&nbsp; </svg>
</button> </button>
<button type="button" class="btn btn-sm btn-outline-primary" (click)="nextDoc()" [disabled]="!hasNext()"> <button type="button" class="btn btn-sm btn-outline-primary" i18n-title title="Next" (click)="nextDoc()" [disabled]="!hasNext()">
<svg class="buttonicon" fill="currentColor"> <svg class="buttonicon" fill="currentColor">
<use xlink:href="assets/bootstrap-icons.svg#arrow-right" /> <use xlink:href="assets/bootstrap-icons.svg#arrow-right" />
</svg>&nbsp; </svg>
</button> </button>
</div> </div>

View File

@ -265,7 +265,7 @@ export class DocumentListViewService {
hasPrevious(doc: number) { hasPrevious(doc: number) {
if (this.documents) { if (this.documents) {
let index = this.documents.findIndex(d => d.id == doc) let index = this.documents.findIndex(d => d.id == doc)
return !(index == 0 && this.currentPage == 1) return index != -1 && !(index == 0 && this.currentPage == 1)
} }
} }