diff options
author | Saúl Ibarra Corretgé <saghul@gmail.com> | 2018-10-01 08:25:41 +0200 |
---|---|---|
committer | Hristo Terezov <hristo@jitsi.org> | 2018-10-01 08:53:12 -0500 |
commit | d5571c46d43d6ddab65c7425fb1ea259263384c8 (patch) | |
tree | bba5f401263714274f1775720a6c4c1a77c8855b /app/features/settings/components | |
parent | 1c83507faf0cc533f69dc75f95fdf396b558ee77 (diff) |
Clarify error message
Diffstat (limited to 'app/features/settings/components')
-rw-r--r-- | app/features/settings/components/ServerURLField.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/features/settings/components/ServerURLField.js b/app/features/settings/components/ServerURLField.js index 504620d..f7a01b7 100644 --- a/app/features/settings/components/ServerURLField.js +++ b/app/features/settings/components/ServerURLField.js @@ -67,7 +67,8 @@ class ServerURLField extends Component<Props, State> { return ( <form onSubmit = { this._onServerURLSubmit }> <FieldTextStateless - invalidMessage = { 'Invalid Server URL' } + invalidMessage + = { 'Invalid Server URL or external API not enabled' } isInvalid = { !this.state.isValid } isValidationHidden = { this.state.isValid } label = 'Server URL' |