mirror of
https://github.com/flarum/core.git
synced 2025-07-09 19:06:23 +02:00
Fix MarkRead Mobile Gesture (#2383)
This commit is contained in:
@ -91,12 +91,12 @@ export default class DiscussionListItem extends Component {
|
|||||||
)
|
)
|
||||||
: ''}
|
: ''}
|
||||||
|
|
||||||
<a
|
<span
|
||||||
className={'Slidable-underneath Slidable-underneath--left Slidable-underneath--elastic' + (isUnread ? '' : ' disabled')}
|
className={'Slidable-underneath Slidable-underneath--left Slidable-underneath--elastic' + (isUnread ? '' : ' disabled')}
|
||||||
onclick={this.markAsRead.bind(this)}
|
onclick={this.markAsRead.bind(this)}
|
||||||
>
|
>
|
||||||
{icon('fas fa-check')}
|
{icon('fas fa-check')}
|
||||||
</a>
|
</span>
|
||||||
|
|
||||||
<div className={'DiscussionListItem-content Slidable-content' + (isUnread ? ' unread' : '') + (isRead ? ' read' : '')}>
|
<div className={'DiscussionListItem-content Slidable-content' + (isUnread ? ' unread' : '') + (isRead ? ' read' : '')}>
|
||||||
<Link
|
<Link
|
||||||
|
Reference in New Issue
Block a user