Merge pull request #17887 from CommanderRoot/fix-single-column-change

Fix broken single column change page introduced by #17862
This commit is contained in:
Maurício Meneghini Fauth 2022-11-09 12:21:47 -03:00 committed by GitHub
commit 27ce8d46ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,7 @@ final class ChangeController extends AbstractController
public function __invoke(ServerRequest $request): void
{
if ($request->getParsedBodyParam('change_column') !== null) {
if ($request->getParam('change_column') !== null) {
$this->displayHtmlForColumnChange([$request->getParam('field')]);
return;