MM-52451: always show mark all threads as read button (#23100)

Enables the "Mark All Threads as Read" button even when you don't have
unreads.
This is done as a temporary action to mitigate the phantom unread
mentions pending issue.
This commit is contained in:
Kyriakos Z 2023-04-26 12:49:50 +00:00 committed by GitHub
parent b143a882be
commit 466304e653
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View File

@ -52,7 +52,6 @@ exports[`components/threading/global_threads/thread_list should match snapshot 1
> >
<Memo(Button) <Memo(Button)
className="Button___large Button___icon" className="Button___large Button___icon"
disabled={false}
id="threads-list__mark-all-as-read" id="threads-list__mark-all-as-read"
marginTop={true} marginTop={true}
onClick={[Function]} onClick={[Function]}

View File

@ -233,7 +233,6 @@ const ThreadList = ({
> >
<Button <Button
id={'threads-list__mark-all-as-read'} id={'threads-list__mark-all-as-read'}
disabled={!someUnread}
className={'Button___large Button___icon'} className={'Button___large Button___icon'}
onClick={handleOpenMarkAllAsReadModal} onClick={handleOpenMarkAllAsReadModal}
marginTop={true} marginTop={true}