mirror of
https://github.com/NoRedInk/noredink-ui.git
synced 2024-12-25 06:33:09 +03:00
Adjust error message
This commit is contained in:
parent
819aee116d
commit
49f9880181
@ -166,19 +166,18 @@ view_ model =
|
||||
, Html.main_ [ css [ flexGrow (int 1), sectionStyles ] ]
|
||||
(case model.route of
|
||||
Routes.Doodad doodad ->
|
||||
case List.head (examples (\m -> m.name == doodad)) of
|
||||
Just example ->
|
||||
[ mainContentHeader ("Viewing " ++ doodad ++ " doodad only")
|
||||
, examples (\m -> m.name == doodad)
|
||||
|> List.head
|
||||
|> Maybe.map
|
||||
(\example ->
|
||||
Html.div [ id (String.replace "." "-" example.name) ]
|
||||
, Html.div [ id (String.replace "." "-" example.name) ]
|
||||
[ Example.view example
|
||||
|> Html.map (UpdateModuleStates example.name)
|
||||
]
|
||||
)
|
||||
|> Maybe.withDefault (Html.text "Oops! We couldn't find that doodad.")
|
||||
]
|
||||
|
||||
Nothing ->
|
||||
[ Html.text <| "Oops! We couldn't find " ++ doodad ]
|
||||
|
||||
Routes.Category category ->
|
||||
[ mainContentHeader (Category.forDisplay category)
|
||||
, examples
|
||||
|
Loading…
Reference in New Issue
Block a user