about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/list_editor/components/edit_list_form.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/mastodon/features/list_editor/components/edit_list_form.js')
-rw-r--r--app/javascript/mastodon/features/list_editor/components/edit_list_form.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/javascript/mastodon/features/list_editor/components/edit_list_form.js b/app/javascript/mastodon/features/list_editor/components/edit_list_form.js
index 3ccab12a8..4d7e49ec0 100644
--- a/app/javascript/mastodon/features/list_editor/components/edit_list_form.js
+++ b/app/javascript/mastodon/features/list_editor/components/edit_list_form.js
@@ -33,16 +33,16 @@ class ListForm 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;