Skip to content

Commit eb4284f

Browse files
authored
Update MassAction.php to adhere to standards
1 parent f8e407d commit eb4284f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/code/Magento/Ui/Component/MassAction.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ public function prepare()
2121
$config = $this->getConfiguration();
2222

2323
foreach ($this->getChildComponents() as $actionComponent) {
24-
$actionComponentConfig = $actionComponent->getConfiguration();
25-
$disabledAction = $actionComponentConfig['actionDisable'] ?? false;
24+
$componentConfig = $actionComponent->getConfiguration();
25+
$disabledAction = $componentConfig['actionDisable'] ?? false;
2626
if ($disabledAction) {
2727
continue;
2828
}
29-
$config['actions'][] = $actionComponentConfig;
29+
$config['actions'][] = $componentConfig;
3030
}
3131

3232
$origConfig = $this->getConfiguration();

0 commit comments

Comments
 (0)