diff options
author | Joris | 2016-06-19 21:18:56 +0200 |
---|---|---|
committer | Joris | 2016-06-21 12:49:51 +0200 |
commit | 36a90770ebeb9bd99e136bfe035fdda5dfabc304 (patch) | |
tree | 42b605108f4b8b731fecd65b028006aa41399f40 /src/client/elm/SignIn | |
parent | fb5629d7f705b7e80dcf1852da58d2864c2b0d25 (diff) |
Add a dialog to confirm income deletion
Diffstat (limited to 'src/client/elm/SignIn')
-rw-r--r-- | src/client/elm/SignIn/Update.elm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/elm/SignIn/Update.elm b/src/client/elm/SignIn/Update.elm index 28307e4..7ada45c 100644 --- a/src/client/elm/SignIn/Update.elm +++ b/src/client/elm/SignIn/Update.elm @@ -8,8 +8,8 @@ import SignIn.Msg exposing (..) import Model.Translations exposing (getMessage, Translations) update : Translations -> Msg -> Model -> Model -update translations action signInView = - case action of +update translations msg signInView = + case msg of UpdateLogin login -> { signInView | login = login |