diff --git a/modules/webapp/src/main/elm/Comp/CustomFieldInput.elm b/modules/webapp/src/main/elm/Comp/CustomFieldInput.elm index e49177db..cb623a5d 100644 --- a/modules/webapp/src/main/elm/Comp/CustomFieldInput.elm +++ b/modules/webapp/src/main/elm/Comp/CustomFieldInput.elm @@ -260,7 +260,7 @@ update msg model = in UpdateResult model_ Cmd.none (Value value) - ( DateMsg lm, DateField _ picker ) -> + ( DateMsg lm, DateField old picker ) -> let ( picker_, event ) = Comp.DatePicker.updateDefault lm picker @@ -271,10 +271,10 @@ update msg model = ( Just date, Value (Date.toIsoString date) ) DatePicker.None -> - ( Nothing, NoResult ) + ( old, NoResult ) DatePicker.FailedInput _ -> - ( Nothing, NoResult ) + ( old, NoResult ) model_ = { model | fieldModel = DateField newDate picker_ } diff --git a/modules/webapp/src/main/elm/Comp/ItemDetail/Update.elm b/modules/webapp/src/main/elm/Comp/ItemDetail/Update.elm index 7ea31fdc..e04e7714 100644 --- a/modules/webapp/src/main/elm/Comp/ItemDetail/Update.elm +++ b/modules/webapp/src/main/elm/Comp/ItemDetail/Update.elm @@ -247,6 +247,7 @@ update key flags inav settings msg model = , res6.cmd , res7.cmd , res8.cmd + , res9.cmd , getOptions flags , proposalCmd , Api.getSentMails flags item.id SentMailsResp @@ -262,6 +263,7 @@ update key flags inav settings msg model = , res6.sub , res7.sub , res8.sub + , res9.sub ] , linkTarget = Comp.LinkTarget.LinkNone }