@growy/strapi-plugin-encrypted-field 2.1.7 → 2.1.8

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.
@@ -110,8 +110,8 @@ export default {
110
110
  defaultMessage: 'Logs de Auditoría',
111
111
  },
112
112
  Component: async () => {
113
- const { AuditLogs } = await import('./pages/AuditLogs');
114
- return AuditLogs;
113
+ const component = await import('./pages/AuditLogs');
114
+ return component.default;
115
115
  },
116
116
  permissions: [
117
117
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@growy/strapi-plugin-encrypted-field",
3
- "version": "2.1.7",
3
+ "version": "2.1.8",
4
4
  "description": "Campo personalizado de texto cifrado para Strapi",
5
5
  "strapi": {
6
6
  "name": "encrypted-field",