
* Fixed a bug where the bottom of the page could be cut off * Adjusted all the headings to h2, which looks better * Refactored GetSeriesDetail to actually map the names inside the code so the UI just displays. * Put in some basic improvements to OPDS by using Series Detail type layout, but this only reduces one click. * Fixed a bug where offset from scrollbar fix causes readers to be cutoff.
19 lines
No EOL
872 B
HTML
19 lines
No EOL
872 B
HTML
<app-side-nav-companion-bar [hasFilter]="true" (filterOpen)="filterOpen.emit($event)">
|
|
<h2 title>
|
|
Recently Added
|
|
</h2>
|
|
</app-side-nav-companion-bar>
|
|
<app-bulk-operations [actionCallback]="bulkActionCallback"></app-bulk-operations>
|
|
<app-card-detail-layout
|
|
[isLoading]="isLoading"
|
|
[items]="series"
|
|
[pagination]="pagination"
|
|
[filterSettings]="filterSettings"
|
|
[filterOpen]="filterOpen"
|
|
(applyFilter)="applyFilter($event)"
|
|
(pageChange)="onPageChange($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> |