mirror of
https://github.com/strapi/strapi.git
synced 2025-08-18 13:45:25 +00:00
commit
3dbc38fadb
@ -35,7 +35,7 @@ function LeftMenuFooter({ version, ...rest }) {
|
||||
<LeftMenuLink
|
||||
{...rest}
|
||||
{...link}
|
||||
destination={messages[link.label].id}
|
||||
label={messages[link.label].id}
|
||||
key={link.label}
|
||||
/>
|
||||
))}
|
||||
|
@ -44,7 +44,7 @@ export function PluginDispatcher(props) {
|
||||
|
||||
return (
|
||||
<div>
|
||||
<Helmet title={`Stapi - ${name}`} />
|
||||
<Helmet title={`Strapi - ${name}`} />
|
||||
<ErrorBoundary>
|
||||
<PluginEntryComponent {...props} {...blockerComponentProps} />
|
||||
</ErrorBoundary>
|
||||
|
@ -10,7 +10,7 @@
|
||||
"Provider": "Provider",
|
||||
"ResetPasswordToken": "Reset Password Token",
|
||||
"Role": "Role",
|
||||
"Roles & Permissions": "Roles & Permission",
|
||||
"Roles & Permissions": "Roles & Permissions",
|
||||
"Settings Manager": "Settings Manager",
|
||||
"Username": "Username",
|
||||
"Users": "Users",
|
||||
|
@ -165,7 +165,7 @@ class SettingsPage extends React.PureComponent {
|
||||
confirm: 'content-manager.popUpWarning.button.confirm',
|
||||
}}
|
||||
popUpWarningType="danger"
|
||||
onConfirm={onSubmit}
|
||||
onConfirm={() => onSubmit(this.context)}
|
||||
/>
|
||||
<PopUpWarning
|
||||
isOpen={showWarningCancel}
|
||||
@ -210,6 +210,10 @@ class SettingsPage extends React.PureComponent {
|
||||
|
||||
SettingsPage.defaultProps = {};
|
||||
|
||||
SettingsPage.contextTypes = {
|
||||
emitEvent: PropTypes.func,
|
||||
};
|
||||
|
||||
SettingsPage.propTypes = {
|
||||
history: PropTypes.object.isRequired,
|
||||
location: PropTypes.object.isRequired,
|
||||
|
Loading…
x
Reference in New Issue
Block a user