diff options
author | Joris Guyonvarch | 2015-03-22 17:20:03 +0100 |
---|---|---|
committer | Joris Guyonvarch | 2015-03-22 17:20:03 +0100 |
commit | cf26834c717043685866b47eb95bcd8d1299a78b (patch) | |
tree | 1e3f391b777402cc62400e40ede07fde0cf65a0e /src/Update/Update.elm | |
parent | b3076f37700291221ededbaf996a065b006cf42d (diff) |
If no edition is given and the enter key is pressed, exit the edition mode
Diffstat (limited to 'src/Update/Update.elm')
-rw-r--r-- | src/Update/Update.elm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Update/Update.elm b/src/Update/Update.elm index a556e36..2f4d7a4 100644 --- a/src/Update/Update.elm +++ b/src/Update/Update.elm @@ -107,7 +107,9 @@ validEdition model = Just edition -> if isEmpty edition then - model + { model + | edition <- Nothing + } else let timerAction = case edition.kind of |