preserving item displaying details on page refresh (#19)

fixes #18
This commit is contained in:
Rok Garbas 2020-05-11 21:33:20 +02:00 committed by GitHub
parent 4efb8ddfec
commit d3c3e2e31b
Failed to generate hash of commit

View file

@ -126,15 +126,16 @@ update path navKey msg model =
) )
ShowDetails selected -> ShowDetails selected ->
( { model ( model
| showDetailsFor = , createUrl path
if model.showDetailsFor == Just selected then model.query
(if model.showDetailsFor == Just selected then
Nothing Nothing
else else
Just selected Just selected
} )
, Cmd.none |> Browser.Navigation.pushUrl navKey
) )