File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
app/code/Magento/Ui/Component Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 6
6
namespace Magento \Ui \Component ;
7
7
8
8
/**
9
+ * Mass action UI component.
10
+ *
9
11
* @api
10
12
* @since 100.0.2
11
13
*/
@@ -21,12 +23,12 @@ public function prepare()
21
23
$ config = $ this ->getConfiguration ();
22
24
23
25
foreach ($ this ->getChildComponents () as $ actionComponent ) {
24
- $ actionComponentConfig = $ actionComponent ->getConfiguration ();
25
- $ disabledAction = $ actionComponentConfig ['actionDisable ' ] ?? false ;
26
+ $ componentConfig = $ actionComponent ->getConfiguration ();
27
+ $ disabledAction = $ componentConfig ['actionDisable ' ] ?? false ;
26
28
if ($ disabledAction ) {
27
29
continue ;
28
30
}
29
- $ config ['actions ' ][] = $ actionComponentConfig ;
31
+ $ config ['actions ' ][] = $ componentConfig ;
30
32
}
31
33
32
34
$ origConfig = $ this ->getConfiguration ();
You can’t perform that action at this time.
0 commit comments