Skip to content

Commit

Permalink
Fix wording of split rule. (#2927)
Browse files Browse the repository at this point in the history
* Fix wording of slit rule.

* add release note

* fix typo
  • Loading branch information
psybers authored Jun 27, 2024
1 parent 247e3e8 commit 2d4256b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/desktop-client/e2e/rules.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ test.describe('Rules', () => {
splitActions: [
[
{
field: 'a fixed percent',
field: 'a fixed percent of the remainder',
value: '90',
},
{
Expand Down
2 changes: 1 addition & 1 deletion packages/loot-core/src/shared/rules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const FIELD_TYPES = new Map(

export const ALLOCATION_METHODS = {
'fixed-amount': 'a fixed amount',
'fixed-percent': 'a fixed percent',
'fixed-percent': 'a fixed percent of the remainder',
remainder: 'an equal portion of the remainder',
};

Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/2927.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [psybers]
---

Fix wording of split rule.

0 comments on commit 2d4256b

Please sign in to comment.