summaryrefslogtreecommitdiffstats
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/react/components/error_bar.jsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/web/react/components/error_bar.jsx b/web/react/components/error_bar.jsx
index 279e0c315..3362ab835 100644
--- a/web/react/components/error_bar.jsx
+++ b/web/react/components/error_bar.jsx
@@ -49,7 +49,11 @@ export default class ErrorBar extends React.Component {
componentWillMount() {
if (global.window.mm_config.SendEmailNotifications === 'false') {
- ErrorStore.storeLastError({message: this.props.intl.formatMessage({id: 'error_bar.preview_mode'})});
+ ErrorStore.storeLastError({message: this.props.intl.formatMessage(
+ {
+ id: 'error_bar.preview_mode',
+ defaultMessage: 'Preview Mode: Email notifications have not been configured'
+ })});
this.onErrorChange();
}
}