Skip to content

Commit

Permalink
Merge pull request #3413 from insiders/node-reorder
Browse files Browse the repository at this point in the history
[NodeBundle] Fix node reorder parents
  • Loading branch information
acrobat committed Apr 28, 2024
2 parents 3954d66 + 8be2f90 commit 8640989
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ public function reorderAction(Request $request): Response
$this->init($request);
$nodes = [];
$nodeIds = $request->request->all('nodes');
$changeParents = $request->request->get('parent');
$changeParents = $request->request->all('parent');

foreach ($nodeIds as $id) {
/* @var Node $node */
Expand Down

0 comments on commit 8640989

Please sign in to comment.