about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/lists/components/new_list_form.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/mastodon/features/lists/components/new_list_form.js')
-rw-r--r--app/javascript/mastodon/features/lists/components/new_list_form.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/javascript/mastodon/features/lists/components/new_list_form.js b/app/javascript/mastodon/features/lists/components/new_list_form.js
index f790ccbe6..4e00e5200 100644
--- a/app/javascript/mastodon/features/lists/components/new_list_form.js
+++ b/app/javascript/mastodon/features/lists/components/new_list_form.js
@@ -34,16 +34,16 @@ class NewListForm extends React.PureComponent {
 
   handleChange = e => {
     this.props.onChange(e.target.value);
-  }
+  };
 
   handleSubmit = e => {
     e.preventDefault();
     this.props.onSubmit();
-  }
+  };
 
   handleClick = () => {
     this.props.onSubmit();
-  }
+  };
 
   render () {
     const { value, disabled, intl } = this.props;