mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-02-21 10:40:01 -05:00
* Don't log a message about bad match if the file is a cover image * Enable bulk operations for In Progress and Recently Added * Fixed a bad logic case
15 lines
720 B
HTML
15 lines
720 B
HTML
<app-bulk-operations [actionCallback]="bulkActionCallback"></app-bulk-operations>
|
|
<app-card-detail-layout header="In Progress"
|
|
[isLoading]="isLoading"
|
|
[items]="series"
|
|
[filters]="filters"
|
|
[pagination]="pagination"
|
|
(pageChange)="onPageChange($event)"
|
|
(applyFilter)="updateFilter($event)"
|
|
|
|
>
|
|
<ng-template #cardItem let-item let-position="idx">
|
|
<app-series-card [data]="item" [libraryId]="item.libraryId" (reload)="loadPage()" (selection)="bulkSelectionService.handleCardSelection('series', position, series.length, $event)" [selected]="bulkSelectionService.isCardSelected('series', position)" [allowSelection]="true"></app-series-card>
|
|
</ng-template>
|
|
</app-card-detail-layout>
|