Skip to content

Commit 37f7d6c

Browse files
committed
update disabled upon Receive
1 parent a15179d commit 37f7d6c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/DateTimePicker.purs

+4-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,10 @@ handleAction = case _ of
128128
raiseSelectionChanged state.interval state.date time'
129129
_ -> H.raise $ TimeOutput msg
130130
Receive input -> do
131-
H.modify_ _ { interval = input.interval }
131+
H.modify_ _
132+
{ disabled = input.disabled
133+
, interval = input.interval
134+
}
132135

133136
handleQuery :: forall m a. Query a -> ComponentM m (Maybe a)
134137
handleQuery = case _ of

0 commit comments

Comments
 (0)