Fix trending sort label

This commit is contained in:
Chocobozzz 2024-06-20 10:57:45 +02:00
parent 77a7c6e5ff
commit 9b56fcb500
No known key found for this signature in database
GPG Key ID: 583A612D890159BE

View File

@ -59,9 +59,13 @@
@if (isTrendingSortEnabled('most-viewed')) {
<ng-option i18n value="-trending">Sort by <strong>"Recent Views"</strong></ng-option>
} @else if (isTrendingSortEnabled('hot')) {
}
@if (isTrendingSortEnabled('hot')) {
<ng-option i18n value="-hot">Sort by <strong>"Hot"</strong></ng-option>
} @else if (isTrendingSortEnabled('most-liked')) {
}
@if (isTrendingSortEnabled('most-liked')) {
<ng-option i18n value="-likes">Sort by <strong>"Likes"</strong></ng-option>
}