Skip to content

Commit ce8830a

Browse files
committedSep 13, 2024
version 3.0.15
1 parent 7c64b5d commit ce8830a

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed
 

‎CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 3.0.15 - 2024-09-13
4+
5+
### Fixed
6+
- Fix an error when duplicating Super Table blocks.
7+
38
## 3.0.14 - 2024-04-29
49

510
### Changed

‎composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "verbb/super-table",
33
"description": "Super-charge your content builders and create nested Matrix fields.",
44
"type": "craft-plugin",
5-
"version": "3.0.14",
5+
"version": "3.0.15",
66
"keywords": [
77
"craft",
88
"cms",

‎src/services/Service.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -917,7 +917,7 @@ public function duplicateBlocks(
917917
], ['blockId' => $block->id, 'ownerId' => $target->id], updateTimestamp: false);
918918
$newBlockId = $block->id;
919919
} else {
920-
$newBlockId = $elementsService->duplicateElement($block, $newAttributes, trackDuplication: $trackDuplications)->id;
920+
$newBlockId = $elementsService->duplicateElement($block, $newAttributes, $trackDuplications)->id;
921921
}
922922

923923
$newBlockIds[] = $newBlockId;

0 commit comments

Comments
 (0)
Please sign in to comment.