mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-16 00:00:26 -05:00
style: fix automatically-fixable lint issues
This commit is contained in:
parent
33df5b6eb0
commit
a96fe522f4
13 changed files with 206 additions and 206 deletions
|
@ -70,7 +70,7 @@ class FeedbackForm extends React.Component {
|
||||||
autoComplete="off"
|
autoComplete="off"
|
||||||
autoCorrect="off"
|
autoCorrect="off"
|
||||||
className={classNames(
|
className={classNames(
|
||||||
'compose-feedback',
|
'compose-feedback'
|
||||||
)}
|
)}
|
||||||
component="textarea"
|
component="textarea"
|
||||||
error={errors.feedback}
|
error={errors.feedback}
|
||||||
|
|
|
@ -222,7 +222,7 @@ class MuteModal extends React.Component {
|
||||||
{this.state.step > 0 && this.state.step < steps.USER_FEEDBACK ? (
|
{this.state.step > 0 && this.state.step < steps.USER_FEEDBACK ? (
|
||||||
<Button
|
<Button
|
||||||
className={classNames(
|
className={classNames(
|
||||||
'back-button',
|
'back-button'
|
||||||
)}
|
)}
|
||||||
onClick={this.handlePrevious}
|
onClick={this.handlePrevious}
|
||||||
>
|
>
|
||||||
|
@ -233,7 +233,7 @@ class MuteModal extends React.Component {
|
||||||
) : this.state.step === steps.USER_FEEDBACK ? (
|
) : this.state.step === steps.USER_FEEDBACK ? (
|
||||||
<Button
|
<Button
|
||||||
className={classNames(
|
className={classNames(
|
||||||
'send-button',
|
'send-button'
|
||||||
)}
|
)}
|
||||||
form="feedback-form"
|
form="feedback-form"
|
||||||
type="submit"
|
type="submit"
|
||||||
|
|
|
@ -10,6 +10,6 @@ module.exports = {
|
||||||
{
|
{
|
||||||
allowParens: true
|
allowParens: true
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -10,7 +10,7 @@ describe('OSChooser', () => {
|
||||||
component.find('button').last()
|
component.find('button').last()
|
||||||
.simulate('click');
|
.simulate('click');
|
||||||
|
|
||||||
expect(onSetOs).toBeCalledWith('Android');
|
expect(onSetOs).toHaveBeenCalledWith('Android');
|
||||||
});
|
});
|
||||||
|
|
||||||
test('has all 4 operating systems', () => {
|
test('has all 4 operating systems', () => {
|
||||||
|
|
Loading…
Reference in a new issue