We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe2deb9 commit 3d89158Copy full SHA for 3d89158
src/main/frontend/src/components/AddCommentForm.js
@@ -92,7 +92,7 @@ class AddCommentFormView extends React.PureComponent {
92
const hasValidationErrors = validationErrors.length > 0;
93
return (
94
<div className="col-sm-12 form-group">
95
- <form className={`form-horizontal ${hasValidationErrors ? 'has-error' : ''}`} onSubmit={ handleSubmit }>
+ <form className={ `form-horizontal ${hasValidationErrors ? 'has-error' : ''}` } onSubmit={ handleSubmit }>
96
<div
97
id="add-comment-failed-msg"
98
className={ `alert alert-danger text-center col-sm-8 col-sm-offset-2 ${hasServerError ? '' : 'hidden'}` }>
@@ -130,4 +130,4 @@ class AddCommentFormView extends React.PureComponent {
130
</div>
131
);
132
}
133
-}
+}
0 commit comments