strapi+3.4.3.patch
diff --git a/node_modules/strapi/lib/services/entity-validator/index.js b/node_modules/strapi/lib/services/entity-validator/index.js
index 5314f52..6793480 100644
--- a/node_modules/strapi/lib/services/entity-validator/index.js
+++ b/node_modules/strapi/lib/services/entity-validator/index.js
@@ -155,15 +155,31 @@ const createAttributeValidator = createOrUpdate => (attr, data, { isDraft }) =>
return validator;
};
-const createModelValidator = createOrUpdate => (model, data, { isDraft }) => {
+const createModelValidator = createOrUpdate => (model, data, { isDraft }, parentPath) => {
This file has been truncated. show original
strapi-plugin-content-manager+3.0.6.patch
diff --git a/node_modules/strapi-plugin-content-manager/admin/src/components/CustomTable/Row.js b/node_modules/strapi-plugin-content-manager/admin/src/components/CustomTable/Row.js
index cf51f2e..e4735f6 100644
--- a/node_modules/strapi-plugin-content-manager/admin/src/components/CustomTable/Row.js
+++ b/node_modules/strapi-plugin-content-manager/admin/src/components/CustomTable/Row.js
@@ -74,8 +74,8 @@ function Row({ goTo, isBulkable, row, headers }) {
const memoizedDisplayedValue = useCallback(
name => {
const type = get(schema, ['attributes', name, 'type'], 'string');
-
- return getDisplayedValue(type, row[name], name);
This file has been truncated. show original