Remove a stray Println from expenseForm.MustFillFromDatabase
This commit is contained in:
parent
c3fa23727f
commit
f546632a89
|
@ -421,7 +421,6 @@ func (form *expenseForm) MustFillFromDatabase(ctx context.Context, conn *Conn, s
|
||||||
if len(form.Tax.Selected) == 1 && form.Tax.Selected[0] == "" {
|
if len(form.Tax.Selected) == 1 && form.Tax.Selected[0] == "" {
|
||||||
form.Tax.Selected = nil
|
form.Tax.Selected = nil
|
||||||
}
|
}
|
||||||
fmt.Println(form.Tax.Selected)
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
func HandleUpdateExpense(w http.ResponseWriter, r *http.Request, params httprouter.Params) {
|
func HandleUpdateExpense(w http.ResponseWriter, r *http.Request, params httprouter.Params) {
|
||||||
|
|
Loading…
Reference in New Issue