This website works better with JavaScript.
Home
Explore
Help
Sign In
nekobus
/
mastodon_neko
forked from
closed-social/mastodon
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
"Mute conversation" option on all own toots, not just in notifications (
#4844
)
That way you can mute notifications for a toot before you get replies to it or boosts or favourites
master
Eugen Rochko
7 years ago
committed by
GitHub
parent
a4caa7eb62
commit
95f018a3d4
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
app/javascript/mastodon/components/status_action_bar.js
+ 1
- 1
app/javascript/mastodon/components/status_action_bar.js
View File
@ -134,7 +134,7 @@ export default class StatusActionBar extends ImmutablePureComponent {
menu
.
push
(
null
)
;
if
(
withDismiss
)
{
if
(
status
.
getIn
(
[
'account'
,
'id'
]
)
===
me
||
withDismiss
)
{
menu
.
push
(
{
text
:
intl
.
formatMessage
(
mutingConversation
?
messages
.
unmuteConversation
:
messages
.
muteConversation
)
,
action
:
this
.
handleConversationMuteClick
}
)
;
menu
.
push
(
null
)
;
}
Write
Preview
Loading…
Cancel
Save