Skip to content
Snippets Groups Projects
Unverified Commit 45c4b262 authored by DJ Mountney's avatar DJ Mountney Committed by GitHub
Browse files

Fix ability to rename budget in the UI (#2383)

parent e1f805b9
No related branches found
No related tags found
No related merge requests found
......@@ -187,7 +187,7 @@ function EditableBudgetName() {
const inputEl = e.target as HTMLInputElement;
const newBudgetName = inputEl.value;
if (newBudgetName.trim() !== '') {
setBudgetNamePref(inputEl.name);
setBudgetNamePref(newBudgetName);
setEditing(false);
}
}}
......
---
category: Bugfix
authors: [twk3]
---
Fix ability to rename budget in the UI.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment