Skip to content

Commit 9453b69

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 82552c9 + f3142c0 commit 9453b69

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/workflows/fix-php-code-style-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
uses: aglipanci/[email protected]
2424

2525
- name: Commit changes
26-
uses: stefanzweifel/git-auto-commit-action@v6
26+
uses: stefanzweifel/git-auto-commit-action@v7
2727
with:
2828
commit_message: Fix styling

.github/workflows/update-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
release-notes: ${{ github.event.release.body }}
2626

2727
- name: Commit updated CHANGELOG
28-
uses: stefanzweifel/git-auto-commit-action@v6
28+
uses: stefanzweifel/git-auto-commit-action@v7
2929
with:
3030
branch: main
3131
commit_message: Update CHANGELOG

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `laravel-filament-flexible-content-block-pages` will be documented in this file.
44

5+
## v0.2.2 - 2025-10-14
6+
7+
Fix bug with disabled page hierarchy on page tree action
8+
59
## v0.2.1 - 2025-10-02
610

711
Fix lazy loading exception in menu item observer to clear menu cache.

src/Resources/PageResource/Pages/ListPages.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ protected function getActions(): array
3030
->icon('heroicon-o-arrow-turn-down-right')
3131
->color('gray')
3232
->visible(FilamentFlexibleContentBlockPages::config()->isParentAndPageTreeEnabled($this->getModel()))
33-
->url(fn() => FilamentFlexibleContentBlockPages::config()->isParentAndPageTreeEnabled($this->getModel()) ? static::getResource()::getUrl('tree') : null),
33+
->url(fn () => FilamentFlexibleContentBlockPages::config()->isParentAndPageTreeEnabled($this->getModel()) ? static::getResource()::getUrl('tree') : null),
3434
];
3535
}
3636

0 commit comments

Comments
 (0)