File tree Expand file tree Collapse file tree 1 file changed +2
-14
lines changed
app/code/Magento/Ui/view/base/web/js/grid Expand file tree Collapse file tree 1 file changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -26,8 +26,7 @@ define([
26
26
noItemsMsg : $t ( 'You haven\'t selected any items!' ) ,
27
27
modules : {
28
28
selections : '${ $.selectProvider }'
29
- } ,
30
- actionClicked : false
29
+ }
31
30
} ,
32
31
33
32
/**
@@ -62,24 +61,13 @@ define([
62
61
}
63
62
64
63
action = this . getAction ( actionIndex ) ;
65
-
66
- if ( action . actionClicked && ! action . timeoutExpired ) {
67
- return this ;
68
- }
69
64
callback = this . _getCallback ( action , data ) ;
70
65
71
66
action . confirm ?
72
67
this . _confirm ( action , callback ) :
73
68
callback ( ) ;
74
69
75
- this . actions ( ) . forEach ( function ( item ) {
76
- item . actionClicked = ( item . type === actionIndex ) ;
77
- } ) ;
78
-
79
- action . timeoutExpired = false ;
80
- setTimeout ( function ( ) {
81
- action . timeoutExpired = true ;
82
- } , 3000 ) ;
70
+ this . close ( ) ;
83
71
84
72
return this ;
85
73
} ,
You can’t perform that action at this time.
0 commit comments