fix copy paste not working in new modal

This commit is contained in:
Nakul Nagargade 2025-03-12 11:52:05 +05:30
parent c6ba6ac33b
commit ca5f535aba

View file

@ -498,7 +498,7 @@ export function pasteComponents(targetParentId, copiedComponentObj) {
targetParentId === key ||
(components?.[key]?.component.component === 'Tabs' &&
targetParentId?.split('-')?.slice(0, -1)?.join('-') === key) ||
(['Container', 'Form', 'Modal'].includes(components?.[key]?.component.component) &&
(['Container', 'Form', 'ModalV2'].includes(components?.[key]?.component.component) &&
['header', 'footer'].some((section) => targetParentId.includes(section)))
)
) {