diff options
author | Starfall <us@starfall.systems> | 2020-09-27 17:09:25 -0500 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2020-09-27 17:09:25 -0500 |
commit | 4966c6cc24107c728fe8e0de7ffc4d0a8cc5510d (patch) | |
tree | a31455093fda701c6746559299b0a5e742ed4ce7 /app/javascript/flavours/glitch/features/getting_started | |
parent | bc32e736fbd7c6afd59e619c885fa80ab637324a (diff) | |
parent | 787d5d728923393f12421a480b3c7aee789a11fe (diff) |
Merge branch 'glitch' into main
Diffstat (limited to 'app/javascript/flavours/glitch/features/getting_started')
-rw-r--r-- | app/javascript/flavours/glitch/features/getting_started/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/getting_started/index.js b/app/javascript/flavours/glitch/features/getting_started/index.js index d8a51c689..b4549fdf8 100644 --- a/app/javascript/flavours/glitch/features/getting_started/index.js +++ b/app/javascript/flavours/glitch/features/getting_started/index.js @@ -159,7 +159,7 @@ const NAVIGATION_PANEL_BREAKPOINT = 600 + (285 * 2) + (10 * 2); listItems = listItems.concat([ <div key='9'> <ColumnLink key='10' icon='bars' text={intl.formatMessage(messages.lists)} to='/lists' /> - {lists.map(list => + {lists.filter(list => !columns.find(item => item.get('id') === 'LIST' && item.getIn(['params', 'id']) === list.get('id'))).map(list => <ColumnLink key={(11 + Number(list.get('id'))).toString()} to={`/timelines/list/${list.get('id')}`} icon='list-ul' text={list.get('title')} /> )} </div>, |