[frontend/components] Add missing notification types
This commit is contained in:
parent
7b71a14537
commit
7e4cf31ca1
1 changed files with 9 additions and 0 deletions
|
@ -53,6 +53,15 @@
|
||||||
case { Type: "bite" }:
|
case { Type: "bite" }:
|
||||||
<span class="notification-text">@Loc["bit you"]</span>
|
<span class="notification-text">@Loc["bit you"]</span>
|
||||||
break;
|
break;
|
||||||
|
case { Type: "edit" }:
|
||||||
|
<span class="notification-text">@Loc["edited a note"]</span>
|
||||||
|
break;
|
||||||
|
case { Type: "pollVote" }:
|
||||||
|
<span class="notification-text">@Loc["voted on your poll"]</span>
|
||||||
|
break;
|
||||||
|
case { Type: "pollEnded" }:
|
||||||
|
<span class="notification-text">@Loc["poll has ended"]</span>
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
<span class="notification-text">
|
<span class="notification-text">
|
||||||
<i>@Loc["unsupported notification type"]</i>
|
<i>@Loc["unsupported notification type"]</i>
|
||||||
|
|
Loading…
Add table
Reference in a new issue