Browse Source

Save quick filter settings when selecting a different filter (#10296)

The active filter is stored in the web app's settings, but no save
is explicitly triggered, meaning that it is only saved when a different
setting is changed.
pull/4/head
ThibG 5 years ago
committed by Eugen Rochko
parent
commit
7477db7268
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      app/javascript/mastodon/actions/notifications.js

+ 2
- 0
app/javascript/mastodon/actions/notifications.js View File

@ -7,6 +7,7 @@ import {
importFetchedStatus,
importFetchedStatuses,
} from './importer';
import { saveSettings } from './settings';
import { defineMessages } from 'react-intl';
import { List as ImmutableList } from 'immutable';
import { unescapeHTML } from '../utils/html';
@ -187,5 +188,6 @@ export function setFilter (filterType) {
value: filterType,
});
dispatch(expandNotifications());
dispatch(saveSettings());
};
};

Loading…
Cancel
Save