1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-17 17:47:03 +00:00

ui: Move div.page into Page frame

This commit is contained in:
James Hillyerd
2018-12-15 20:36:39 -08:00
parent caec5e7c17
commit af3ed04100
8 changed files with 43 additions and 46 deletions

View File

@@ -307,7 +307,7 @@ view model =
framePage :
ActivePage
-> (msg -> Msg)
-> { title : String, modal : Maybe (Html msg), content : Html msg }
-> { title : String, modal : Maybe (Html msg), content : List (Html msg) }
-> Document Msg
framePage page toMsg { title, modal, content } =
Document title
@@ -315,7 +315,7 @@ view model =
model.session
page
(Maybe.map (Html.map toMsg) modal)
(Html.map toMsg content)
(List.map (Html.map toMsg) content)
]
in
case model.page of