feat(note_icon): add placeholder for search

This commit is contained in:
Elian Doran 2025-12-27 20:45:08 +02:00
parent 73975ab521
commit e57f1e6f23
No known key found for this signature in database
2 changed files with 2 additions and 0 deletions

View File

@ -766,6 +766,7 @@
"note_icon": {
"change_note_icon": "Change note icon",
"search": "Search:",
"search_placeholder": "Type to filter icons...",
"reset-default": "Reset to default icon",
"filter": "Filter",
"filter-none": "All icons",

View File

@ -125,6 +125,7 @@ function NoteIconList({ note, dropdownRef }: {
inputRef={searchBoxRef}
type="text"
name="icon-search"
placeholder={t("note_icon.search_placeholder")}
currentValue={search} onChange={setSearch}
autoFocus
/>