Fix missing rules in report modal in web UI (#19387)

lolsob-rspec
Eugen Rochko 2022-10-18 19:33:11 +02:00 committed by GitHub
parent 1fdfebc745
commit 0b84d15288
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ const messages = defineMessages({
});
const mapStateToProps = state => ({
rules: state.getIn(['server', 'rules'], ImmutableList()),
rules: state.getIn(['server', 'server', 'rules'], ImmutableList()),
});
export default @connect(mapStateToProps)