Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mattamon committed Dec 4, 2024
1 parent f8fe966 commit 6b60c85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controller/PerspectiveController.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public function updateViewAction(ViewAccessor $viewAccessor, Request $request, C
];
try {
$treeStore = json_decode($request->request->getString('data'), true);
$deletedRecords = json_decode($request->request->geString('deletedRecords'), true);
$deletedRecords = json_decode($request->request->getString('deletedRecords'), true);
$viewAccessor->writeConfiguration($treeStore, $deletedRecords);
} catch (\Exception $e) {
$ret = ['success' => false, 'error' => $e->getMessage()];
Expand Down

0 comments on commit 6b60c85

Please sign in to comment.