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/Update.elm | |
parent | 36a90770ebeb9bd99e136bfe035fdda5dfabc304 (diff) |
Use a dialog to add a payment
Diffstat (limited to 'src/client/elm/Update.elm')
-rw-r--r-- | src/client/elm/Update.elm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/elm/Update.elm b/src/client/elm/Update.elm index db8889f..d3e82de 100644 --- a/src/client/elm/Update.elm +++ b/src/client/elm/Update.elm @@ -68,7 +68,7 @@ update msg model = ) Dialog dialogMsg -> - let (newDialog, command) = Dialog.update dialogMsg model.dialog + let (newDialog, command) = Dialog.update dialogMsg model.view model.dialog in ( { model | dialog = newDialog } , command ) |