mirror of https://github.com/zulip/zulip.git
msg_actions_popover: Allow keyboard navigation to mark as unread button.
We missed defining `tabindex` in the HTML element of the button.
This commit is contained in:
parent
2a4ec505e4
commit
19ee1e92e7
|
@ -46,7 +46,7 @@
|
|||
|
||||
{{#if should_display_mark_as_unread}}
|
||||
<li>
|
||||
<a class="mark_as_unread" data-message-id="{{message_id}}">
|
||||
<a class="mark_as_unread" data-message-id="{{message_id}}" tabindex="0">
|
||||
<span class="unread_count">1</span>
|
||||
{{t "Mark as unread from here" }}
|
||||
<span class="hotkey-hint">(U)</span>
|
||||
|
|
Loading…
Reference in New Issue