mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 10:14:53 -05:00
Fix ability to rename budget in the UI (#2383)
This commit is contained in:
@@ -187,7 +187,7 @@ function EditableBudgetName() {
|
|||||||
const inputEl = e.target as HTMLInputElement;
|
const inputEl = e.target as HTMLInputElement;
|
||||||
const newBudgetName = inputEl.value;
|
const newBudgetName = inputEl.value;
|
||||||
if (newBudgetName.trim() !== '') {
|
if (newBudgetName.trim() !== '') {
|
||||||
setBudgetNamePref(inputEl.name);
|
setBudgetNamePref(newBudgetName);
|
||||||
setEditing(false);
|
setEditing(false);
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
|
|||||||
6
upcoming-release-notes/2383.md
Normal file
6
upcoming-release-notes/2383.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
category: Bugfix
|
||||||
|
authors: [twk3]
|
||||||
|
---
|
||||||
|
|
||||||
|
Fix ability to rename budget in the UI.
|
||||||
Reference in New Issue
Block a user