glitch: fix webpack build failure in columns_area.js (#1212)

Fixes #1212 by copying what works in the mainline flavor.
master
Rey Tucker 2019-09-08 17:29:42 -04:00 committed by ThibG
parent 286bf110c3
commit 0014a32c19
1 changed files with 2 additions and 2 deletions

View File

@ -51,8 +51,8 @@ const messages = defineMessages({
publish: { id: 'compose_form.publish', defaultMessage: 'Toot' },
});
@component => injectIntl(component, { withRef: true })
export default class ColumnsArea extends ImmutablePureComponent {
export default @(component => injectIntl(component, { withRef: true }))
class ColumnsArea extends ImmutablePureComponent {
static contextTypes = {
router: PropTypes.object.isRequired,