Skip to content

Commit

Permalink
Allow categorise transfer to off budget accounts on mobile (#1824)
Browse files Browse the repository at this point in the history
* Allow categorise transfer to off budget accounts

* Add release notes
  • Loading branch information
Kit-p authored Oct 27, 2023
1 parent 0af2987 commit 5fe146e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,10 @@ class TransactionEditInner extends PureComponent {
{!transaction.is_parent ? (
<TapField
value={category ? lookupName(categories, category) : null}
disabled={(account && !!account.offbudget) || transferAcct}
disabled={
(account && !!account.offbudget) ||
(transferAcct && !transferAcct.offbudget)
}
// TODO: the button to turn this transaction into a split
// transaction was on top of the category button in the native
// app, on the right-hand side
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/1824.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [Kit-p]
---

Allow categorise transfer to off budget accounts on mobile

0 comments on commit 5fe146e

Please sign in to comment.