diff options
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/Client.elm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/Client.elm b/client/src/Client.elm index 840e9b6..6e987e7 100644 --- a/client/src/Client.elm +++ b/client/src/Client.elm @@ -74,14 +74,14 @@ viewPlayers players = Html.table [] <| view : Model -> Browser.Document Msg view model = case model of Error str -> - { title = "CaFP: Error" + { title = "Untitled PL Card Game: Error" , body = [ Html.h1 [] [Html.text "Error"] , Html.p [] [Html.text str] ] } Connecting roomId -> - { title = "CaFP: Connecting" + { title = "Untitled PL Card Game: Connecting" , body = [ Html.h1 [] [ Html.text <| @@ -91,8 +91,8 @@ view model = case model of } Game game -> { title = case game.room of - Nothing -> "CaFP" - Just room -> "CaFP | " ++ room + Nothing -> "Untitled PL Card Game" + Just room -> room ++ " | Untitled PL Card Game" , body = [ Html.div [Html.Attributes.class "main"] <| [ Html.div [Html.Attributes.class "table"] |