Merge branch 'v4/database' of github.com:strapi/strapi into v4/database

This commit is contained in:
Alexandre Bodin 2021-07-26 17:53:08 +02:00
commit 6cc1c05bf9

View File

@ -38,11 +38,17 @@ const advancedForm = {
} }
if (repeatable) { if (repeatable) {
return { items: [[options.required], [uiHelpers.divider], [options.max, options.min]] }; return {
items: [
[options.required, options.private],
[uiHelpers.divider],
[options.max, options.min],
],
};
} }
return { return {
items: [[options.required]], items: [[options.required, options.private]],
}; };
}, },
date: ({ type }) => { date: ({ type }) => {