Skip to content

Commit

Permalink
Fixed a logic bug
Browse files Browse the repository at this point in the history
  • Loading branch information
majora2007 committed Jul 27, 2023
1 parent fc605e9 commit 5676bdc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions UI/Web/src/app/dashboard/_components/dashboard.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,24 @@
</div>
</ng-container>
</ng-container>
<app-carousel-reel [items]="inProgress" title="{{t('on-deck-title')}}" (sectionClick)="handleSectionClick($event)">

<app-carousel-reel [items]="inProgress" title="{{t('on-deck-title')}}" (sectionClick)="handleSectionClick('on deck')">
<ng-template #carouselItem let-item let-position="idx">
<app-series-card [data]="item" [libraryId]="item.libraryId" [suppressLibraryLink]="libraryId !== 0" [isOnDeck]="true"
(reload)="reloadInProgress($event)" (dataChanged)="reloadInProgress($event)"></app-series-card>
</ng-template>
</app-carousel-reel>

<app-carousel-reel [items]="recentlyUpdatedSeries" title="{{t('recently-updated-title')}}" (sectionClick)="handleSectionClick($event)">
<app-carousel-reel [items]="recentlyUpdatedSeries" title="{{t('recently-updated-title')}}" (sectionClick)="handleSectionClick('recently updated series')">
<ng-template #carouselItem let-item let-position="idx">
<app-card-item [entity]="item" [title]="item.seriesName" [suppressLibraryLink]="libraryId !== 0" [imageUrl]="imageService.getSeriesCoverImage(item.seriesId)"
[suppressArchiveWarning]="true" (clicked)="handleRecentlyAddedChapterClick(item)" [count]="item.count"></app-card-item>
</ng-template>
</app-carousel-reel>

<app-carousel-reel [items]="recentlyAddedSeries" title="{{t('recently-added-title')}}" (sectionClick)="handleSectionClick($event)">
<app-carousel-reel [items]="recentlyAddedSeries" title="{{t('recently-added-title')}}" (sectionClick)="handleSectionClick('newly added series')">
<ng-template #carouselItem let-item let-position="idx">
<app-series-card [data]="item" [libraryId]="item.libraryId" [suppressLibraryLink]="libraryId !== 0" (dataChanged)="loadRecentlyAddedSeries()"></app-series-card>
</ng-template>
</app-carousel-reel>
</ng-container>
</ng-container>

0 comments on commit 5676bdc

Please sign in to comment.