diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-09-09 15:16:08 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-09-09 18:36:43 +0200 |
commit | f2b307af25ca53f062f1a9e50dc1724b7550fd71 (patch) | |
tree | 203bc24a72f1fae273ae805e99a99b791035eb16 /app/javascript/flavours/glitch/features/local_settings | |
parent | 0014a32c19bb6d3ab83aad65506f6b1cf66f93a9 (diff) |
Move “export” before decorators
As this is what upstream does. See also https://github.com/tc39/proposal-decorators/issues/69
Diffstat (limited to 'app/javascript/flavours/glitch/features/local_settings')
-rw-r--r-- | app/javascript/flavours/glitch/features/local_settings/navigation/index.js | 4 | ||||
-rw-r--r-- | app/javascript/flavours/glitch/features/local_settings/page/index.js | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/app/javascript/flavours/glitch/features/local_settings/navigation/index.js b/app/javascript/flavours/glitch/features/local_settings/navigation/index.js index 47f3d6d15..ab3a554bf 100644 --- a/app/javascript/flavours/glitch/features/local_settings/navigation/index.js +++ b/app/javascript/flavours/glitch/features/local_settings/navigation/index.js @@ -20,8 +20,8 @@ const messages = defineMessages({ close: { id: 'settings.close', defaultMessage: 'Close' }, }); -@injectIntl -export default class LocalSettingsNavigation extends React.PureComponent { +export default @injectIntl +class LocalSettingsNavigation extends React.PureComponent { static propTypes = { index : PropTypes.number, diff --git a/app/javascript/flavours/glitch/features/local_settings/page/index.js b/app/javascript/flavours/glitch/features/local_settings/page/index.js index 64ed68876..e08c12c76 100644 --- a/app/javascript/flavours/glitch/features/local_settings/page/index.js +++ b/app/javascript/flavours/glitch/features/local_settings/page/index.js @@ -30,8 +30,8 @@ const messages = defineMessages({ rewrite_mentions_username: { id: 'settings.rewrite_mentions_username', defaultMessage: 'Rewrite with username' }, }); -@injectIntl -export default class LocalSettingsPage extends React.PureComponent { +export default @injectIntl +class LocalSettingsPage extends React.PureComponent { static propTypes = { index : PropTypes.number, |