verbb / field-manager

Field Manager is a Craft CMS plugin to make it easy to manage your fields and field groups.
MIT License
199 stars 16 forks source link

Fix Neo block type groups being moved to the clone field, instead of being cloned #94

Closed ttempleton closed 1 year ago

ttempleton commented 1 year ago

Currently, when cloning a Neo field, any block type groups belonging to the original field get moved to the clone field, instead of being cloned. This is due to the processCloneNeo() service method cloning the block type data, but not also the group data. This pull request fixes the issue by adding a processCloneNeoGroups() method to clone the group data, so as not to change the expected returned data format of processCloneNeo().