features/configuration --> features/soapbox_config
This commit is contained in:
parent
83b799a3a1
commit
d6220565f9
3 changed files with 5 additions and 5 deletions
|
@ -42,7 +42,7 @@ const mapStateToProps = state => {
|
|||
|
||||
export default @connect(mapStateToProps)
|
||||
@injectIntl
|
||||
class ConfigSoapbox extends ImmutablePureComponent {
|
||||
class SoapboxConfig extends ImmutablePureComponent {
|
||||
|
||||
static propTypes = {
|
||||
soapbox: ImmutablePropTypes.map,
|
|
@ -72,7 +72,7 @@ import {
|
|||
LoginPage,
|
||||
Preferences,
|
||||
EditProfile,
|
||||
ConfigSoapbox,
|
||||
SoapboxConfig,
|
||||
PasswordReset,
|
||||
SecurityForm,
|
||||
MfaForm,
|
||||
|
@ -255,7 +255,7 @@ class SwitchingColumnsArea extends React.PureComponent {
|
|||
<Redirect exact from='/settings' to='/settings/preferences' />
|
||||
<WrappedRoute path='/settings/preferences' layout={LAYOUT.DEFAULT} component={Preferences} content={children} />
|
||||
<WrappedRoute path='/settings/profile' layout={LAYOUT.DEFAULT} component={EditProfile} content={children} />
|
||||
<WrappedRoute path='/admin' layout={LAYOUT.DEFAULT} component={ConfigSoapbox} content={children} />
|
||||
<WrappedRoute path='/admin' layout={LAYOUT.DEFAULT} component={SoapboxConfig} content={children} />
|
||||
|
||||
<WrappedRoute layout={LAYOUT.EMPTY} component={GenericNotFound} content={children} />
|
||||
</Switch>
|
||||
|
|
|
@ -182,8 +182,8 @@ export function EditProfile() {
|
|||
return import(/* webpackChunkName: "features/edit_profile" */'../../edit_profile');
|
||||
}
|
||||
|
||||
export function ConfigSoapbox() {
|
||||
return import(/* webpackChunkName: "features/configuration" */'../../configuration');
|
||||
export function SoapboxConfig() {
|
||||
return import(/* webpackChunkName: "features/soapbox_config" */'../../soapbox_config');
|
||||
}
|
||||
|
||||
export function PasswordReset() {
|
||||
|
|
Loading…
Reference in a new issue