about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/list_editor/components/search.js
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2018-09-15 00:59:48 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-09-14 17:59:48 +0200
commit0ddbccf7e6303f3b524628e210bdba5654d5c421 (patch)
tree15f8257614fdb9c7a6bc3b74bdbd3688525f493c /app/javascript/mastodon/features/list_editor/components/search.js
parent64a5561b5afe0cd125498a245f8b27ea3d4d133c (diff)
Upgrade Babel to version 7.0.0 (#5925)
Diffstat (limited to 'app/javascript/mastodon/features/list_editor/components/search.js')
-rw-r--r--app/javascript/mastodon/features/list_editor/components/search.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/mastodon/features/list_editor/components/search.js b/app/javascript/mastodon/features/list_editor/components/search.js
index 45c4d0f2e..f7617fe58 100644
--- a/app/javascript/mastodon/features/list_editor/components/search.js
+++ b/app/javascript/mastodon/features/list_editor/components/search.js
@@ -19,9 +19,9 @@ const mapDispatchToProps = dispatch => ({
   onChange: value => dispatch(changeListSuggestions(value)),
 });
 
-@connect(mapStateToProps, mapDispatchToProps)
+export default @connect(mapStateToProps, mapDispatchToProps)
 @injectIntl
-export default class Search extends React.PureComponent {
+class Search extends React.PureComponent {
 
   static propTypes = {
     intl: PropTypes.object.isRequired,