diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-07-29 00:28:13 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-07-29 00:34:39 +0200 |
commit | a4a81c5434c73139f7c1d66f2687039237c5208a (patch) | |
tree | 912a7c6217a31d5effe18f27782b56feafd0b8a2 /app/javascript/flavours/glitch | |
parent | 91da921dbb51f55bc926c3997ae558d735292a67 (diff) |
Fix crash in /web/lists
Fixes #1181
Diffstat (limited to 'app/javascript/flavours/glitch')
-rw-r--r-- | app/javascript/flavours/glitch/features/lists/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/features/lists/index.js b/app/javascript/flavours/glitch/features/lists/index.js index bf1b410bb..ad5240bd5 100644 --- a/app/javascript/flavours/glitch/features/lists/index.js +++ b/app/javascript/flavours/glitch/features/lists/index.js @@ -57,6 +57,8 @@ export default class Lists extends ImmutablePureComponent { ); } + const emptyMessage = <FormattedMessage id='empty_column.lists' defaultMessage="You don't have any lists yet. When you create one, it will show up here." />; + return ( <Column icon='bars' heading={intl.formatMessage(messages.heading)}> <ColumnBackButtonSlim /> |