Fix updating tree nodes when settings change

This commit is contained in:
Thomas Nordquist
2019-04-07 22:56:10 +02:00
parent 3e47b07ba7
commit 436b569e93
12 changed files with 85 additions and 126 deletions

View File

@@ -142,7 +142,7 @@ class TitleBar extends React.Component<Props, {}> {
const mapStateToProps = (state: AppState) => {
return {
topicFilter: state.settings.topicFilter,
topicFilter: state.settings.get('topicFilter'),
}
}