summaryrefslogtreecommitdiffstats
path: root/webapp/components/error_bar.jsx
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2017-04-07 14:19:37 -0400
committerGeorge Goldberg <george@gberg.me>2017-04-07 19:19:37 +0100
commit9318ffcdf3caf77d66e0b9fc7967d9de9ea99b4b (patch)
tree6410b8da9d1155259b1ad488b08f73af4cb9ea12 /webapp/components/error_bar.jsx
parent8dbb297b3e0a00deb2eb31333b9b1bde37d90543 (diff)
downloadchat-9318ffcdf3caf77d66e0b9fc7967d9de9ea99b4b.tar.gz
chat-9318ffcdf3caf77d66e0b9fc7967d9de9ea99b4b.tar.bz2
chat-9318ffcdf3caf77d66e0b9fc7967d9de9ea99b4b.zip
PLT-6263 Updated timing and text of Site URL warning bar (#6016)
Diffstat (limited to 'webapp/components/error_bar.jsx')
-rw-r--r--webapp/components/error_bar.jsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/webapp/components/error_bar.jsx b/webapp/components/error_bar.jsx
index 146b4955e..341f0efb4 100644
--- a/webapp/components/error_bar.jsx
+++ b/webapp/components/error_bar.jsx
@@ -49,12 +49,12 @@ export default class ErrorBar extends React.Component {
const errorIgnored = ErrorStore.getIgnoreNotification();
if (!errorIgnored) {
- if (global.mm_config.SendEmailNotifications === 'false') {
- ErrorStore.storeLastError({notification: true, message: Utils.localizeMessage('error_bar.preview_mode', 'Preview Mode: Email notifications have not been configured')});
- return;
- } else if (isSystemAdmin && global.mm_config.SiteURL === '') {
+ if (isSystemAdmin && global.mm_config.SiteURL === '') {
ErrorStore.storeLastError({notification: true, message: SITE_URL_ERROR});
return;
+ } else if (global.mm_config.SendEmailNotifications === 'false') {
+ ErrorStore.storeLastError({notification: true, message: Utils.localizeMessage('error_bar.preview_mode', 'Preview Mode: Email notifications have not been configured')});
+ return;
}
}
@@ -178,10 +178,10 @@ export default class ErrorBar extends React.Component {
let defaultMessage;
if (global.mm_config.EnableSignUpWithGitLab === 'true') {
id = 'error_bar.site_url_gitlab';
- defaultMessage = '{docsLink} is now a required setting. Please configure it in the System Console or in gitlab.rb if you\'re using GitLab Mattermost.';
+ defaultMessage = 'Please configure your {docsLink} in the System Console or in gitlab.rb if you\'re using GitLab Mattermost.';
} else {
id = 'error_bar.site_url';
- defaultMessage = '{docsLink} is now a required setting. Please configure it in {link}.';
+ defaultMessage = 'Please configure your {docsLink} in the System Console.';
}
message = (