Deduplicate <div> tag
This commit is contained in:
parent
ce41228000
commit
9f5244fa8b
1 changed files with 1 additions and 3 deletions
|
@ -252,9 +252,7 @@ export default React.createClass({
|
|||
for (let i = 0; i < this.state.zxcvbnResult.feedback.suggestions.length; ++i) {
|
||||
suggestions.push(<div key={i}>{this.state.zxcvbnResult.feedback.suggestions[i]}</div>);
|
||||
}
|
||||
const suggestionBlock = suggestions.length > 0 ? <div>
|
||||
{suggestions}
|
||||
</div> : <div>{_t("Keep going...")}</div>;
|
||||
const suggestionBlock = <div>{suggestions.length > 0 ? suggestions : _t("Keep going...")}</div>;
|
||||
|
||||
helpText = <div>
|
||||
{this.state.zxcvbnResult.feedback.warning}
|
||||
|
|
Loading…
Reference in a new issue