about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/components/notification_purge_buttons.js
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2019-09-09 15:16:08 +0200
committerThibG <thib@sitedethib.com>2019-09-09 18:36:43 +0200
commitf2b307af25ca53f062f1a9e50dc1724b7550fd71 (patch)
tree203bc24a72f1fae273ae805e99a99b791035eb16 /app/javascript/flavours/glitch/components/notification_purge_buttons.js
parent0014a32c19bb6d3ab83aad65506f6b1cf66f93a9 (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/components/notification_purge_buttons.js')
-rw-r--r--app/javascript/flavours/glitch/components/notification_purge_buttons.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/components/notification_purge_buttons.js b/app/javascript/flavours/glitch/components/notification_purge_buttons.js
index e0c1543b0..3d9e9b13b 100644
--- a/app/javascript/flavours/glitch/components/notification_purge_buttons.js
+++ b/app/javascript/flavours/glitch/components/notification_purge_buttons.js
@@ -18,8 +18,8 @@ const messages = defineMessages({
   btnApply : { id: 'notification_purge.btn_apply', defaultMessage: 'Clear\nselected' },
 });
 
-@injectIntl
-export default class NotificationPurgeButtons extends ImmutablePureComponent {
+export default @injectIntl
+class NotificationPurgeButtons extends ImmutablePureComponent {
 
   static propTypes = {
     onDeleteMarked : PropTypes.func.isRequired,