diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-10-28 19:34:22 +0200 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2022-10-28 19:49:45 +0200 |
commit | 8814a1b949c18c8908ab29e89799511e13ca7871 (patch) | |
tree | db05c83809a742127d16b50fe3c8b28427d33505 /app/javascript/flavours/glitch/features/closed_registrations_modal | |
parent | 9f6c175550cf419334ca65bd71b7a456c13cb5a4 (diff) |
[Glitch] Fix closed registrations message not appearing in web UI
Port 5fa340931e2bd39a4bcccc9a97ad58e13a2d56ab to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/features/closed_registrations_modal')
-rw-r--r-- | app/javascript/flavours/glitch/features/closed_registrations_modal/index.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/javascript/flavours/glitch/features/closed_registrations_modal/index.js b/app/javascript/flavours/glitch/features/closed_registrations_modal/index.js index 25dc4e20f..cb91636cb 100644 --- a/app/javascript/flavours/glitch/features/closed_registrations_modal/index.js +++ b/app/javascript/flavours/glitch/features/closed_registrations_modal/index.js @@ -6,7 +6,7 @@ import { domain } from 'flavours/glitch/initial_state'; import { fetchServer } from 'flavours/glitch/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 { |