fix: improve error messages
All checks were successful
Deploy / build-and-deploy (push) Successful in 2m18s

This commit is contained in:
juancwu 2026-02-15 02:31:48 +00:00
commit d7cd50d671
8 changed files with 86 additions and 61 deletions

View file

@ -146,7 +146,7 @@ templ AddExpenseForm(props AddExpenseFormProps) {
// Tags
<div>
@label.Label(label.Props{For: "new-expense-tags"}) {
Tags
Tags (Optional)
}
<datalist id="available-tags">
for _, tag := range props.Tags {
@ -255,7 +255,7 @@ templ EditExpenseForm(spaceID string, exp *model.ExpenseWithTagsAndMethod, metho
// Tags
<div>
@label.Label(label.Props{For: "edit-tags-" + exp.ID}) {
Tags
Tags (Optional)
}
@tagsinput.TagsInput(tagsinput.Props{
ID: "edit-tags-" + exp.ID,