Skip to content

Commit

Permalink
fix(ui): fix icon group names not localized
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelMakesGames committed Jun 1, 2024
1 parent 67e2818 commit 018f130
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
}}
>
{#each groups as group}
<optgroup label={group}>
<optgroup label={$t(group)}>
{#each iconOptions.filter((opt) => opt.group === group) as option (option.id)}
<option value={option.id}>{option.literalName ?? $t(option.name)}</option>
{/each}
Expand Down

0 comments on commit 018f130

Please sign in to comment.