lints
This commit is contained in:
@@ -108,7 +108,7 @@ export default class Input extends Component {
|
||||
const charactersLeft = maxLength - commentLength;
|
||||
|
||||
return (
|
||||
<form className={b('input', props)} onSubmit={this.send} role="form" aria-label="New Comment">
|
||||
<form className={b('input', props)} onSubmit={this.send} role="form" aria-label="New comment">
|
||||
<div className="input__field-wrapper">
|
||||
<textarea
|
||||
className="input__field"
|
||||
|
||||
@@ -23,9 +23,10 @@ export default class Thread extends Component {
|
||||
|
||||
return (
|
||||
<div
|
||||
className={b('thread', props)}
|
||||
role={['listitem'].concat(!collapsed && replies.length ? 'list' : [])}
|
||||
aria-expanded={!collapsed}>
|
||||
className={b('thread', props)}
|
||||
role={['listitem'].concat(!collapsed && replies.length ? 'list' : [])}
|
||||
aria-expanded={!collapsed}
|
||||
>
|
||||
<Comment
|
||||
data={comment}
|
||||
mods={{ level: mods.level, collapsed, collapsible: !!replies.length }}
|
||||
|
||||
Reference in New Issue
Block a user