Browse Source

Fix "Hide these posts from home" list setting not refreshing when switching lists (#27763)

pull/1337/head
Brian Holley 2 years ago committed by Claire
parent
commit
3ecc991f63
  1. 2
      app/javascript/mastodon/features/list_timeline/index.jsx

2
app/javascript/mastodon/features/list_timeline/index.jsx

@ -201,7 +201,7 @@ class ListTimeline extends PureComponent {
</div>
<div className='setting-toggle'>
<Toggle id={`list-${id}-exclusive`} defaultChecked={isExclusive} onChange={this.onExclusiveToggle} />
<Toggle id={`list-${id}-exclusive`} checked={isExclusive} onChange={this.onExclusiveToggle} />
<label htmlFor={`list-${id}-exclusive`} className='setting-toggle__label'>
<FormattedMessage id='lists.exclusive' defaultMessage='Hide these posts from home' />
</label>

Loading…
Cancel
Save