aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Model/View/SignInView.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/elm/Model/View/SignInView.elm')
-rw-r--r--src/client/elm/Model/View/SignInView.elm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/elm/Model/View/SignInView.elm b/src/client/elm/Model/View/SignInView.elm
index cf7e6b2..a950867 100644
--- a/src/client/elm/Model/View/SignInView.elm
+++ b/src/client/elm/Model/View/SignInView.elm
@@ -4,12 +4,12 @@ module Model.View.SignInView
) where
type alias SignInView =
- { connecting : Bool
+ { waitingServer : Bool
, error : Maybe String
}
initSignInView : SignInView
initSignInView =
- { connecting = False
+ { waitingServer = False
, error = Nothing
}