Fix closed registrations message not appearing in web UI (#19508)

Regression from #19486
This commit is contained in:
Eugen Rochko 2022-10-28 19:34:22 +02:00 committed by GitHub
parent dae954ef11
commit 5fa340931e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ import { domain } from 'mastodon/initial_state';
import { fetchServer } from 'mastodon/actions/server';
const mapStateToProps = state => ({
closed_registrations_message: state.getIn(['server', 'server', 'registrations', 'closed_registrations_message']),
message: state.getIn(['server', 'server', 'registrations', 'message']),
});
export default @connect(mapStateToProps)
@ -20,11 +20,11 @@ class ClosedRegistrationsModal extends ImmutablePureComponent {
render () {
let closedRegistrationsMessage;
if (this.props.closed_registrations_message) {
if (this.props.message) {
closedRegistrationsMessage = (
<p
className='prose'
dangerouslySetInnerHTML={{ __html: this.props.closed_registrations_message }}
dangerouslySetInnerHTML={{ __html: this.props.message }}
/>
);
} else {