diff options
author | Joris | 2016-06-23 23:43:23 +0200 |
---|---|---|
committer | Joris | 2016-06-23 23:43:23 +0200 |
commit | 4ce4de89a5400b0d8b9cddaa2922901a081fdaaa (patch) | |
tree | b65e9ef809c2ec7608101563eb3378eaeeddf12b /src/client/elm/LoggedIn/Income | |
parent | 36a90770ebeb9bd99e136bfe035fdda5dfabc304 (diff) |
Use a dialog to add a payment
Diffstat (limited to 'src/client/elm/LoggedIn/Income')
-rw-r--r-- | src/client/elm/LoggedIn/Income/View.elm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/elm/LoggedIn/Income/View.elm b/src/client/elm/LoggedIn/Income/View.elm index 7970284..25cb5a6 100644 --- a/src/client/elm/LoggedIn/Income/View.elm +++ b/src/client/elm/LoggedIn/Income/View.elm @@ -6,6 +6,7 @@ import Dict import Date import Time exposing (Time) import Color +import Task import FontAwesome @@ -114,7 +115,7 @@ incomeView loggedData (incomeId, income) = { title = getMessage "ConfirmDelete" loggedData.translations , body = always <| text "" , confirm = getMessage "Confirm" loggedData.translations - , confirmMsg = Msg.UpdateLoggedIn <| LoggedInMsg.DeleteIncome incomeId + , confirmMsg = always <| Ok <| Msg.UpdateLoggedIn <| LoggedInMsg.DeleteIncome incomeId , undo = getMessage "Undo" loggedData.translations } in button |