System Information
- Strapi Version: 3.6
- Operating System: Ubuntu
- Database: PostgreSQL
- Node Version: 14
- NPM Version: latest
- Yarn Version: latest
Can you please tell me how I can solve the “nested repeating components limit” problem in this case?
My sites should contains some Customer Feedback Forms designing by content managers. Thay would like to describe fields for every forms by name and type. And one of neccessory fields type is SELECT (DropDown list in my UI).
In this topic mr. @DMehaffy wrote
If you need that deep level of nest I suggest using relations and not components.
I have no idea how to implement the options (values variants for select). They can be different for every select field for every form. Could someone advise to me ?
My current data structure is
In data I have:
Sites 1->many Pages
In sections:
CustomerForm (component for page)
FormFields[]
FormField (element)
name
type (text, date, **select**)
(and here I can't add an options array ) options[]
key
value