Don't use plural if there is only 1 hour for reading
This commit is contained in:
parent
713e20ebf4
commit
e7617862a5
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@
|
||||||
<ng-container *ngIf="series.format === MangaFormat.EPUB && series.wordCount > 0 || series.format !== MangaFormat.EPUB">
|
<ng-container *ngIf="series.format === MangaFormat.EPUB && series.wordCount > 0 || series.format !== MangaFormat.EPUB">
|
||||||
<div class="col-auto mb-2">
|
<div class="col-auto mb-2">
|
||||||
<app-icon-and-title [clickable]="false" fontClasses="fa-regular fa-clock">
|
<app-icon-and-title [clickable]="false" fontClasses="fa-regular fa-clock">
|
||||||
{{minHoursToRead}}{{maxHoursToRead !== minHoursToRead ? ('-' + maxHoursToRead) : ''}} Hours
|
{{minHoursToRead}}{{maxHoursToRead !== minHoursToRead ? ('-' + maxHoursToRead) : ''}} Hour{{minHoursToRead > 1 ? 's' : ''}}
|
||||||
</app-icon-and-title>
|
</app-icon-and-title>
|
||||||
</div>
|
</div>
|
||||||
</ng-container>
|
</ng-container>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue