From cb077a87dc05d5d2781c6018d2ccb86418c60b79 Mon Sep 17 00:00:00 2001 From: Chi Vinh Le Date: Mon, 5 Feb 2018 17:22:13 +0100 Subject: [PATCH 1/3] Remove semicolon --- .../src/routes/Moderation/components/ModerationQueue.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/coral-admin/src/routes/Moderation/components/ModerationQueue.js b/client/coral-admin/src/routes/Moderation/components/ModerationQueue.js index 93786013f..0e7cbe347 100644 --- a/client/coral-admin/src/routes/Moderation/components/ModerationQueue.js +++ b/client/coral-admin/src/routes/Moderation/components/ModerationQueue.js @@ -421,7 +421,7 @@ class ModerationQueue extends React.Component { dangling={ !this.props.commentBelongToQueue(this.props.activeTab, comment) } - />; + /> ); } From 05d80a054960b2787c9092d5112dccb7336af75d Mon Sep 17 00:00:00 2001 From: Matt Montgomery Date: Mon, 5 Feb 2018 17:03:44 -0700 Subject: [PATCH 2/3] Use translate-able `sign_out` --- client/coral-admin/src/components/Drawer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/coral-admin/src/components/Drawer.js b/client/coral-admin/src/components/Drawer.js index 60973e8c2..0d59d3bbe 100644 --- a/client/coral-admin/src/components/Drawer.js +++ b/client/coral-admin/src/components/Drawer.js @@ -44,7 +44,7 @@ const CoralDrawer = ({ handleLogout, auth = {} }) => ( {t('configure.configure')} )} - Sign Out + {t('configure.sign_out')} {`v${process.env.VERSION}`} From 764ba4ab360d84a7b3ac2d1c5a63ff2c495483f5 Mon Sep 17 00:00:00 2001 From: Kim Gardner Date: Tue, 6 Feb 2018 11:21:41 -0500 Subject: [PATCH 3/3] Correct password attempt comment --- services/users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/users.js b/services/users.js index 96386108f..a8a6b292b 100644 --- a/services/users.js +++ b/services/users.js @@ -21,7 +21,7 @@ const debug = require('debug')('talk:services:users'); const UserModel = require('../models/user'); const RECAPTCHA_WINDOW = '10m'; // 10 minutes. -const RECAPTCHA_INCORRECT_TRIGGER = 5; // after 3 incorrect attempts, recaptcha will be required. +const RECAPTCHA_INCORRECT_TRIGGER = 5; // after 5 incorrect attempts, recaptcha will be required. const ActionsService = require('./actions'); const mailer = require('./mailer');