about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/lists/index.js
diff options
context:
space:
mode:
authorcwm <chriswmartin@protonmail.com>2017-12-17 21:25:18 -0600
committercwm <chriswmartin@protonmail.com>2017-12-17 21:25:18 -0600
commite4ebbf4f07c55868dbe4fcf6a7074771b69f8e29 (patch)
tree145ddc3178ab2b7966c98d4d8fc471d51e305dee /app/javascript/flavours/glitch/features/lists/index.js
parent17e53b931c12abab8548dba324beaae920c453a8 (diff)
use list-ul icon in list header and web/lists
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>