aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-notifications/my-account-notifications.component.html
diff options
context:
space:
mode:
authorWicklow <123956049+wickloww@users.noreply.github.com>2023-05-02 08:31:00 +0000
committerGitHub <noreply@github.com>2023-05-02 10:31:00 +0200
commita8d42c560a6262fc289dd6495a16368a76db81eb (patch)
tree305b09704ab09fde17c2e995295b12497b783365 /client/src/app/+my-account/my-account-notifications/my-account-notifications.component.html
parent73ef4b54aa6d687575502b4d0297fd2cbee8826a (diff)
downloadPeerTube-a8d42c560a6262fc289dd6495a16368a76db81eb.tar.gz
PeerTube-a8d42c560a6262fc289dd6495a16368a76db81eb.tar.zst
PeerTube-a8d42c560a6262fc289dd6495a16368a76db81eb.zip
I18n missing parameter (#5782)
* fix syntax * Missing i18n parameter
Diffstat (limited to 'client/src/app/+my-account/my-account-notifications/my-account-notifications.component.html')
-rw-r--r--client/src/app/+my-account/my-account-notifications/my-account-notifications.component.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/+my-account/my-account-notifications/my-account-notifications.component.html b/client/src/app/+my-account/my-account-notifications/my-account-notifications.component.html
index e3b226768..f72a1b703 100644
--- a/client/src/app/+my-account/my-account-notifications/my-account-notifications.component.html
+++ b/client/src/app/+my-account/my-account-notifications/my-account-notifications.component.html
@@ -8,7 +8,7 @@
8 8
9 <div class="peertube-select-container peertube-select-button ms-2 me-2"> 9 <div class="peertube-select-container peertube-select-button ms-2 me-2">
10 <select [(ngModel)]="notificationSortType" (ngModelChange)="onChangeSortColumn()" class="form-control"> 10 <select [(ngModel)]="notificationSortType" (ngModelChange)="onChangeSortColumn()" class="form-control">
11 <option value="undefined" disabled>Sort by</option> 11 <option value="undefined" disabled i18n>Sort by</option>
12 <option value="createdAt" i18n>Newest first</option> 12 <option value="createdAt" i18n>Newest first</option>
13 <option value="read" [disabled]="!hasUnreadNotifications()" i18n>Unread first</option> 13 <option value="read" [disabled]="!hasUnreadNotifications()" i18n>Unread first</option>
14 </select> 14 </select>