Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
add "." to progress message.
Browse files Browse the repository at this point in the history
  • Loading branch information
benanhalt committed Apr 5, 2019
1 parent f3d76ae commit a2df18c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/BoomResults.elm
Original file line number Diff line number Diff line change
Expand Up @@ -452,13 +452,13 @@ view { state, packageStatus, mdl, programFlags } =
if progress.progress == -1 then
Options.div
[ Options.css "margin" "auto", Options.css "padding-top" "50px", Options.css "width" "400px", Typo.headline ]
[ Html.text <| Maybe.withDefault "Unfortunately, the project failed." progress.message ]
[ Html.text <| (Maybe.withDefault "Unfortunately, the project failed" progress.message) ++ "." ]
else
Options.div
[ Options.css "margin" "auto", Options.css "padding-top" "50px", Options.css "width" "400px", Typo.headline ]
[ Html.text "Waiting for results..."
, Html.p [] [ Loading.progress (100 * progress.progress) ]
, Html.p [] [ Html.text <| Maybe.withDefault "" progress.message ]
, Html.p [] [ Html.text <| (Maybe.withDefault "" progress.message) ++ "." ]
]

GetProjectionsList _ ->
Expand Down

0 comments on commit a2df18c

Please sign in to comment.