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.
This commit is contained in:
		@@ -7,6 +7,7 @@ import {
 | 
				
			|||||||
  importFetchedStatus,
 | 
					  importFetchedStatus,
 | 
				
			||||||
  importFetchedStatuses,
 | 
					  importFetchedStatuses,
 | 
				
			||||||
} from './importer';
 | 
					} from './importer';
 | 
				
			||||||
 | 
					import { saveSettings } from './settings';
 | 
				
			||||||
import { defineMessages } from 'react-intl';
 | 
					import { defineMessages } from 'react-intl';
 | 
				
			||||||
import { List as ImmutableList } from 'immutable';
 | 
					import { List as ImmutableList } from 'immutable';
 | 
				
			||||||
import { unescapeHTML } from '../utils/html';
 | 
					import { unescapeHTML } from '../utils/html';
 | 
				
			||||||
@@ -187,5 +188,6 @@ export function setFilter (filterType) {
 | 
				
			|||||||
      value: filterType,
 | 
					      value: filterType,
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
    dispatch(expandNotifications());
 | 
					    dispatch(expandNotifications());
 | 
				
			||||||
 | 
					    dispatch(saveSettings());
 | 
				
			||||||
  };
 | 
					  };
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user