Change list icons different from the getting-started icons (#7838)
This commit is contained in:
		
							parent
							
								
									63b05096c7
								
							
						
					
					
						commit
						434ec913dd
					
				
					 3 changed files with 4 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -95,7 +95,7 @@ export default class GettingStarted extends ImmutablePureComponent {
 | 
			
		|||
    navItems.push(
 | 
			
		||||
      <ColumnLink key={i++} icon='envelope' text={intl.formatMessage(messages.direct)} to='/timelines/direct' />,
 | 
			
		||||
      <ColumnLink key={i++} icon='star' text={intl.formatMessage(messages.favourites)} to='/favourites' />,
 | 
			
		||||
      <ColumnLink key={i++} icon='bars' text={intl.formatMessage(messages.lists)} to='/lists' />
 | 
			
		||||
      <ColumnLink key={i++} icon='list-ul' text={intl.formatMessage(messages.lists)} to='/lists' />
 | 
			
		||||
    );
 | 
			
		||||
 | 
			
		||||
    height += 48*3;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -138,7 +138,7 @@ export default class ListTimeline extends React.PureComponent {
 | 
			
		|||
    return (
 | 
			
		||||
      <Column ref={this.setRef}>
 | 
			
		||||
        <ColumnHeader
 | 
			
		||||
          icon='bars'
 | 
			
		||||
          icon='list-ul'
 | 
			
		||||
          active={hasUnread}
 | 
			
		||||
          title={title}
 | 
			
		||||
          onPin={this.handlePin}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -57,7 +57,7 @@ export default class Lists extends ImmutablePureComponent {
 | 
			
		|||
    }
 | 
			
		||||
 | 
			
		||||
    return (
 | 
			
		||||
      <Column icon='bars' heading={intl.formatMessage(messages.heading)}>
 | 
			
		||||
      <Column icon='list-ul' heading={intl.formatMessage(messages.heading)}>
 | 
			
		||||
        <ColumnBackButtonSlim />
 | 
			
		||||
 | 
			
		||||
        <NewListForm />
 | 
			
		||||
| 
						 | 
				
			
			@ -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>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue