[frontend/pages] Use localization for other category name
This commit is contained in:
parent
6875a1e9e2
commit
28610192fe
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@
|
|||
.GroupBy(p => p.Category)
|
||||
.OrderBy(p => string.IsNullOrEmpty(p.Key))
|
||||
.ThenBy(p => p.Key)
|
||||
.ToDictionary(p => p.Key ?? "Other", p => p.ToList());
|
||||
.ToDictionary(p => p.Key ?? Loc["Other"], p => p.ToList());
|
||||
}
|
||||
|
||||
private async Task GetEmojis()
|
||||
|
|
Loading…
Add table
Reference in a new issue