diff options
author | Joris | 2016-01-01 13:00:51 +0100 |
---|---|---|
committer | Joris | 2016-01-01 13:00:51 +0100 |
commit | 5f3d75406ef36924616e3289342647f4939d5004 (patch) | |
tree | e19bfce420ef53ee93548f2e0ee1e248b7630e89 /src/client/elm/View/LoggedIn | |
parent | b73ba24f3440b81698c9d5c370739d03f958f059 (diff) |
Fix add and delete payment
Diffstat (limited to 'src/client/elm/View/LoggedIn')
-rw-r--r-- | src/client/elm/View/LoggedIn/Add.elm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/elm/View/LoggedIn/Add.elm b/src/client/elm/View/LoggedIn/Add.elm index 572bdf6..2f580f9 100644 --- a/src/client/elm/View/LoggedIn/Add.elm +++ b/src/client/elm/View/LoggedIn/Add.elm @@ -32,7 +32,7 @@ addPayment model loggedInView = (Ok name, Ok cost) -> let action = case loggedInView.add.frequency of - Punctual -> SC.AddPayment loggedInView.account.me name cost + Punctual -> SC.AddPayment name cost Monthly -> SC.AddMonthlyPayment name cost in onSubmitPrevDefault serverCommunications.address action (resName, resCost) -> |