File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ class ManageMenuItems extends Page implements HasActions, HasForms
32
32
public mixed $ record ;
33
33
34
34
public $ refreshKey = 0 ;
35
-
35
+
36
36
public $ menuItems = null ;
37
37
38
38
public function mount (int |string $ record ): void
@@ -934,7 +934,7 @@ public function moveItemUp(int $itemId): void
934
934
$ previousSibling = $ item ->getPrevSibling ();
935
935
if ($ previousSibling ) {
936
936
$ item ->beforeNode ($ previousSibling )->save ();
937
-
937
+
938
938
// Just refresh without changing component keys
939
939
$ this ->dispatch ('menu-items-updated ' );
940
940
@@ -968,7 +968,7 @@ public function moveItemDown(int $itemId): void
968
968
$ nextSibling = $ item ->getNextSibling ();
969
969
if ($ nextSibling ) {
970
970
$ item ->afterNode ($ nextSibling )->save ();
971
-
971
+
972
972
// Just refresh without changing component keys
973
973
$ this ->dispatch ('menu-items-updated ' );
974
974
You can’t perform that action at this time.
0 commit comments