Skip to content

Commit cd12e4f

Browse files
stengithub-actions[bot]
authored andcommitted
Fix styling
1 parent ba5a4e6 commit cd12e4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Resources/MenuResource/Pages/ManageMenuItems.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class ManageMenuItems extends Page implements HasActions, HasForms
3232
public mixed $record;
3333

3434
public $refreshKey = 0;
35-
35+
3636
public $menuItems = null;
3737

3838
public function mount(int|string $record): void
@@ -934,7 +934,7 @@ public function moveItemUp(int $itemId): void
934934
$previousSibling = $item->getPrevSibling();
935935
if ($previousSibling) {
936936
$item->beforeNode($previousSibling)->save();
937-
937+
938938
// Refresh the tree to show new order
939939
$this->refreshTree();
940940

@@ -968,7 +968,7 @@ public function moveItemDown(int $itemId): void
968968
$nextSibling = $item->getNextSibling();
969969
if ($nextSibling) {
970970
$item->afterNode($nextSibling)->save();
971-
971+
972972
// Refresh the tree to show new order
973973
$this->refreshTree();
974974

0 commit comments

Comments
 (0)