use list-ul icon in list header and web/lists
This commit is contained in:
parent
17e53b931c
commit
e4ebbf4f07
|
@ -134,7 +134,7 @@ export default class ListTimeline extends React.PureComponent {
|
||||||
return (
|
return (
|
||||||
<Column ref={this.setRef}>
|
<Column ref={this.setRef}>
|
||||||
<ColumnHeader
|
<ColumnHeader
|
||||||
icon='bars'
|
icon='list-ul'
|
||||||
active={hasUnread}
|
active={hasUnread}
|
||||||
title={title}
|
title={title}
|
||||||
onPin={this.handlePin}
|
onPin={this.handlePin}
|
||||||
|
|
|
@ -66,7 +66,7 @@ export default class Lists extends ImmutablePureComponent {
|
||||||
<ColumnSubheading text={intl.formatMessage(messages.subheading)} />
|
<ColumnSubheading text={intl.formatMessage(messages.subheading)} />
|
||||||
|
|
||||||
{lists.map(list =>
|
{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>
|
</div>
|
||||||
</Column>
|
</Column>
|
||||||
|
|
Loading…
Reference in New Issue