Skip to content

Commit

Permalink
Fix edit and remove list actions #2241
Browse files Browse the repository at this point in the history
  • Loading branch information
Rindhal committed Jul 17, 2018
1 parent 034c015 commit 79eb98d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Configuration/ActionConfigPass.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ private function resolveActionInheritance(array $backendConfig)
if ('-' === $entityAction['name'][0]) {
$actionName = substr($entityAction['name'], 1);

unset($entityActions[$actionName], $entityActions['-'.$actionName], $defaultActions[$actionName]);
unset($entityActions[$actionName], $entityActions['-'.$actionName], $defaultActions[$actionName], $backendActions[$actionName]);
}
}

Expand Down

0 comments on commit 79eb98d

Please sign in to comment.