Skip to content

Commit

Permalink
Merge pull request #199 from Lucaber/fix/accountrule
Browse files Browse the repository at this point in the history
Fix Mapping Rules with Account Name
  • Loading branch information
TheAxelander authored Nov 2, 2023
2 parents 837a365 + e6e49bc commit 4941a29
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ string GetFieldValue(int comparisionField)
{
return (comparisionField switch
{
1 => Transaction.AccountId.ToString(),
1 => SelectedAccount?.Name ?? "",
2 => Transaction.Payee,
3 => Transaction.Memo,
4 => Transaction.Amount.ToString(CultureInfo.CurrentCulture),
Expand Down

0 comments on commit 4941a29

Please sign in to comment.