Add quick-select for tag categories above dropdown

Closes: #960
This commit is contained in:
eikek
2022-01-15 18:46:11 +01:00
parent ab2b18e192
commit 7b4300ee2f
5 changed files with 110 additions and 7 deletions

View File

@ -17,6 +17,7 @@ import Messages.Basics
type alias Texts =
{ basics : Messages.Basics.Texts
, placeholder : String
, noCategory : String
}
@ -24,6 +25,7 @@ gb : Texts
gb =
{ basics = Messages.Basics.gb
, placeholder = "Search"
, noCategory = "No category"
}
@ -31,4 +33,5 @@ de : Texts
de =
{ basics = Messages.Basics.de
, placeholder = "Suche"
, noCategory = "Keine Kategorie"
}