Skip to content

Commit

Permalink
version 3.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
engram-design committed Sep 13, 2024
1 parent 7c64b5d commit ce8830a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 3.0.15 - 2024-09-13

### Fixed
- Fix an error when duplicating Super Table blocks.

## 3.0.14 - 2024-04-29

### Changed
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "verbb/super-table",
"description": "Super-charge your content builders and create nested Matrix fields.",
"type": "craft-plugin",
"version": "3.0.14",
"version": "3.0.15",
"keywords": [
"craft",
"cms",
Expand Down
2 changes: 1 addition & 1 deletion src/services/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@ public function duplicateBlocks(
], ['blockId' => $block->id, 'ownerId' => $target->id], updateTimestamp: false);
$newBlockId = $block->id;
} else {
$newBlockId = $elementsService->duplicateElement($block, $newAttributes, trackDuplication: $trackDuplications)->id;
$newBlockId = $elementsService->duplicateElement($block, $newAttributes, $trackDuplications)->id;
}

$newBlockIds[] = $newBlockId;
Expand Down

0 comments on commit ce8830a

Please sign in to comment.