Token encouragement if zxcvbn gives no feedback
zxcvbn is hardcoded to give no suggedtions if the score is greater than 2, but our threshold is 4, so give some generic feedback. Fixes https://github.com/vector-im/riot-web/issues/7860
This commit is contained in:
parent
eecc37038a
commit
ce41228000
2 changed files with 2 additions and 1 deletions
|
@ -254,7 +254,7 @@ export default React.createClass({
|
|||
}
|
||||
const suggestionBlock = suggestions.length > 0 ? <div>
|
||||
{suggestions}
|
||||
</div> : null;
|
||||
</div> : <div>{_t("Keep going...")}</div>;
|
||||
|
||||
helpText = <div>
|
||||
{this.state.zxcvbnResult.feedback.warning}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue