Skip to content
This repository has been archived by the owner on Mar 25, 2019. It is now read-only.

Commit

Permalink
Remove ugly arrow in last discussion
Browse files Browse the repository at this point in the history
  • Loading branch information
ShahiemS committed Jun 1, 2018
1 parent af88b2a commit 6089267
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions js/forum/dist/extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,9 +161,7 @@ System.register('reflar/koseki/components/LastDiscussionView', ['flarum/Componen
m(
'a',
{ href: app.route.user(user), config: m.route },
username(user),
' ',
m('i', { 'class': 'fa fa-icon fa-arrow-circle-right' })
username(user)
),
m('br', null),
m(
Expand Down
2 changes: 1 addition & 1 deletion js/forum/src/components/LastDiscussionView.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default class LastDiscussionView extends Component {
{ app.translator.trans('reflar-koseki.forum.by') } 

<a href={ app.route.user(user) } config={ m.route }>
{ username(user) } <i class="fa fa-icon fa-arrow-circle-right"></i>
{ username(user) }
</a><br/>
<small>{ humanTime(discussion.lastTime()) }</small>
</div>
Expand Down

0 comments on commit 6089267

Please sign in to comment.