@strapi/plugin-users-permissions 4.10.5 → 4.10.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,7 +23,9 @@ const Input = ({
23
23
  }) => {
24
24
  const { formatMessage } = useIntl();
25
25
  const inputValue =
26
- name === 'noName' ? `${strapi.backendURL}/api/connect/${providerToEditName}/callback` : value;
26
+ name === 'noName'
27
+ ? `${window.strapi.backendURL}/api/connect/${providerToEditName}/callback`
28
+ : value;
27
29
 
28
30
  const label = formatMessage(
29
31
  { id: intlLabel.id, defaultMessage: intlLabel.defaultMessage },
@@ -120,7 +120,7 @@ const EmailForm = ({ template, onToggle, onSubmit }) => {
120
120
  id: getTrad('PopUpForm.Email.options.message.label'),
121
121
  defaultMessage: 'Message',
122
122
  })}
123
- name="options.message"
123
+ id="options.message"
124
124
  onChange={handleChange}
125
125
  value={values.options.message}
126
126
  error={
@@ -143,7 +143,7 @@ const EditPage = () => {
143
143
  </GridItem>
144
144
  <GridItem col={6}>
145
145
  <Textarea
146
- name="description"
146
+ id="description"
147
147
  value={values.description || ''}
148
148
  onChange={handleChange}
149
149
  label={formatMessage({
@@ -155,7 +155,7 @@ const EditPage = () => {
155
155
  </GridItem>
156
156
  <GridItem col={6}>
157
157
  <Textarea
158
- name="description"
158
+ id="description"
159
159
  value={values.description || ''}
160
160
  onChange={handleChange}
161
161
  label={formatMessage({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@strapi/plugin-users-permissions",
3
- "version": "4.10.5",
3
+ "version": "4.10.6",
4
4
  "description": "Protect your API with a full-authentication process based on JWT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -29,10 +29,10 @@
29
29
  "lint": "run -T eslint ."
30
30
  },
31
31
  "dependencies": {
32
- "@strapi/design-system": "1.7.5",
33
- "@strapi/helper-plugin": "4.10.5",
34
- "@strapi/icons": "1.7.5",
35
- "@strapi/utils": "4.10.5",
32
+ "@strapi/design-system": "1.7.7",
33
+ "@strapi/helper-plugin": "4.10.6",
34
+ "@strapi/icons": "1.7.7",
35
+ "@strapi/utils": "4.10.6",
36
36
  "bcryptjs": "2.4.3",
37
37
  "formik": "2.2.9",
38
38
  "grant-koa": "5.4.8",
@@ -60,7 +60,6 @@
60
60
  "react": "^17.0.2",
61
61
  "react-dom": "^17.0.2",
62
62
  "react-router-dom": "5.3.4",
63
- "react-test-renderer": "^17.0.2",
64
63
  "styled-components": "5.3.3"
65
64
  },
66
65
  "peerDependencies": {
@@ -80,5 +79,5 @@
80
79
  "required": true,
81
80
  "kind": "plugin"
82
81
  },
83
- "gitHead": "d9277d616b4478a3839e79e47330a4aaf167a2f1"
82
+ "gitHead": "7dbae9d05d765b85927e1ccff282ac9d82d0a9eb"
84
83
  }