aboutsummaryrefslogtreecommitdiff
path: root/src/View/Timer.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/View/Timer.elm')
-rw-r--r--src/View/Timer.elm8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/View/Timer.elm b/src/View/Timer.elm
index 4523334..ca5edc6 100644
--- a/src/View/Timer.elm
+++ b/src/View/Timer.elm
@@ -9,6 +9,7 @@ import String
import Time (Time)
import Signal
import Maybe
+import List
import Model.Model (..)
import Model.Timer (..)
@@ -56,7 +57,12 @@ timeBlock model (id, timer) =
[ class "time block edition"
, onClick (stopIfRinging (id, timer) (Signal.send updates ValidTimerEdition))
]
- [ text (editionView edition.numbers) ]
+ [ if List.isEmpty edition.numbers
+ then
+ text (timeView timer.currentTime)
+ else
+ text (editionView edition.numbers)
+ ]
Nothing ->
button
[ class "time block"