File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
app/javascript/mastodon/features Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class Circle extends ImmutablePureComponent {
54
54
< div className = 'circle' >
55
55
< div className = 'circle__wrapper' >
56
56
< div className = 'circle__display-name' >
57
- < Icon id = 'circle-o ' className = 'column-link__icon' fixedWidth />
57
+ < Icon id = 'user-circle ' className = 'column-link__icon' fixedWidth />
58
58
{ circle . get ( 'title' ) }
59
59
</ div >
60
60
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ class Circle extends React.PureComponent {
45
45
return (
46
46
< div className = 'circle-link' >
47
47
< button className = 'circle-edit-button' onClick = { this . handleEditClick } >
48
- < Icon id = 'circle-o ' className = 'column-link__icon' fixedWidth />
48
+ < Icon id = 'user-circle ' className = 'column-link__icon' fixedWidth />
49
49
{ text }
50
50
</ button >
51
51
< button className = 'circle-delete-button' title = { intl . formatMessage ( messages . deleteConfirm ) } onClick = { this . handleDeleteClick } >
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ class Circles extends ImmutablePureComponent {
61
61
const emptyMessage = < FormattedMessage id = 'empty_column.circles' defaultMessage = "You don't have any circles yet. When you create one, it will show up here." /> ;
62
62
63
63
return (
64
- < Column bindToDocument = { ! multiColumn } icon = 'circle-o ' heading = { intl . formatMessage ( messages . heading ) } >
64
+ < Column bindToDocument = { ! multiColumn } icon = 'user-circle ' heading = { intl . formatMessage ( messages . heading ) } >
65
65
< ColumnBackButtonSlim />
66
66
67
67
< NewCircleForm />
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ class GettingStarted extends ImmutablePureComponent {
138
138
< ColumnLink key = 'bookmark' icon = 'bookmark' text = { intl . formatMessage ( messages . bookmarks ) } to = '/bookmarks' /> ,
139
139
< ColumnLink key = 'favourites' icon = 'star' text = { intl . formatMessage ( messages . favourites ) } to = '/favourites' /> ,
140
140
< ColumnLink key = 'lists' icon = 'list-ul' text = { intl . formatMessage ( messages . lists ) } to = '/lists' /> ,
141
- < ColumnLink key = 'circles' icon = 'circle-o ' text = { intl . formatMessage ( messages . circles ) } to = '/circles' /> ,
141
+ < ColumnLink key = 'circles' icon = 'user-circle ' text = { intl . formatMessage ( messages . circles ) } to = '/circles' /> ,
142
142
) ;
143
143
144
144
height += 48 * 5 ;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ const NavigationPanel = () => (
19
19
< NavLink className = 'column-link column-link--transparent' to = '/favourites' > < Icon className = 'column-link__icon' id = 'star' fixedWidth /> < FormattedMessage id = 'navigation_bar.favourites' defaultMessage = 'Favourites' /> </ NavLink >
20
20
< NavLink className = 'column-link column-link--transparent' to = '/bookmarks' > < Icon className = 'column-link__icon' id = 'bookmark' fixedWidth /> < FormattedMessage id = 'navigation_bar.bookmarks' defaultMessage = 'Bookmarks' /> </ NavLink >
21
21
< NavLink className = 'column-link column-link--transparent' to = '/lists' > < Icon className = 'column-link__icon' id = 'list-ul' fixedWidth /> < FormattedMessage id = 'navigation_bar.lists' defaultMessage = 'Lists' /> </ NavLink >
22
- < NavLink className = 'column-link column-link--transparent' to = '/circles' > < Icon className = 'column-link__icon' id = 'circle-o ' fixedWidth /> < FormattedMessage id = 'navigation_bar.circles' defaultMessage = 'Circles' /> </ NavLink >
22
+ < NavLink className = 'column-link column-link--transparent' to = '/circles' > < Icon className = 'column-link__icon' id = 'user-circle ' fixedWidth /> < FormattedMessage id = 'navigation_bar.circles' defaultMessage = 'Circles' /> </ NavLink >
23
23
{ profile_directory && < NavLink className = 'column-link column-link--transparent' to = '/directory' > < Icon className = 'column-link__icon' id = 'address-book-o' fixedWidth /> < FormattedMessage id = 'getting_started.directory' defaultMessage = 'Profile directory' /> </ NavLink > }
24
24
25
25
< ListPanel />
You can’t perform that action at this time.
0 commit comments