Skip to content

Commit 6f41edf

Browse files
committed
Merge branch 'craft-4' of https://github.com/verbb/super-table into craft-4
2 parents 20adb3c + 435a605 commit 6f41edf

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/services/Service.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -869,14 +869,14 @@ public function duplicateBlocks(SuperTableField $field, ElementInterface $source
869869
} else {
870870
$newBlockId = $block->getCanonicalId();
871871
}
872+
} elseif ($block->primaryOwnerId === $target->id) {
873+
// Only the block ownership was duplicated, so just update its sort order for the target element
874+
Db::update('{{%supertableblocks_owners}}', [
875+
'sortOrder' => $block->sortOrder,
876+
], ['blockId' => $block->id, 'ownerId' => $target->id], updateTimestamp: false);
877+
$newBlockId = $block->id;
872878
} else {
873-
// If the block’s primary owner is equal to the target element ID, no need to do anything
874-
if ($block->primaryOwnerId !== $target->id) {
875-
/** @var SuperTableBlockElement $newBlock */
876-
$newBlockId = $elementsService->duplicateElement($block, $newAttributes)->id;
877-
} else {
878-
$newBlockId = $block->id;
879-
}
879+
$newBlockId = $elementsService->duplicateElement($block, $newAttributes)->id;
880880
}
881881

882882
$newBlockIds[] = $newBlockId;

0 commit comments

Comments
 (0)