about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/lists/index.js
diff options
context:
space:
mode:
authorbeatrix <beatrix.bitrot@gmail.com>2017-12-21 18:47:07 -0500
committerGitHub <noreply@github.com>2017-12-21 18:47:07 -0500
commit60d415bc5e05c6f82d8ca643f52f6081246614f7 (patch)
treeda81b436e1b7c3e91ff039d1f9e21f4f3f92fb6d /app/javascript/flavours/glitch/features/lists/index.js
parentf78d169d7190a65501c65c05daa70fd03de20ee7 (diff)
parentd736739e8ff79044be6f605cd28c89ead710aec6 (diff)
Merge pull request #266 from chriswmartin/getting-started-improvements
Getting started column improvements
Diffstat (limited to 'app/javascript/flavours/glitch/features/lists/index.js')
-rw-r--r--app/javascript/flavours/glitch/features/lists/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/lists/index.js b/app/javascript/flavours/glitch/features/lists/index.js
index c82b370bc..8b0470c92 100644
--- a/app/javascript/flavours/glitch/features/lists/index.js
+++ b/app/javascript/flavours/glitch/features/lists/index.js
@@ -66,7 +66,7 @@ export default class Lists extends ImmutablePureComponent {
           <ColumnSubheading text={intl.formatMessage(messages.subheading)} />
 
           {lists.map(list =>
-            <ColumnLink key={list.get('id')} to={`/timelines/list/${list.get('id')}`} icon='bars' text={list.get('title')} />
+            <ColumnLink key={list.get('id')} to={`/timelines/list/${list.get('id')}`} icon='list-ul' text={list.get('title')} />
           )}
         </div>
       </Column>