We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8e407d commit eb4284fCopy full SHA for eb4284f
app/code/Magento/Ui/Component/MassAction.php
@@ -21,12 +21,12 @@ public function prepare()
21
$config = $this->getConfiguration();
22
23
foreach ($this->getChildComponents() as $actionComponent) {
24
- $actionComponentConfig = $actionComponent->getConfiguration();
25
- $disabledAction = $actionComponentConfig['actionDisable'] ?? false;
+ $componentConfig = $actionComponent->getConfiguration();
+ $disabledAction = $componentConfig['actionDisable'] ?? false;
26
if ($disabledAction) {
27
continue;
28
}
29
- $config['actions'][] = $actionComponentConfig;
+ $config['actions'][] = $componentConfig;
30
31
32
$origConfig = $this->getConfiguration();
0 commit comments