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 55ec6a3 commit 6a964ffCopy full SHA for 6a964ff
app/code/Magento/Ui/view/base/web/js/grid/massactions.js
@@ -175,10 +175,10 @@ define([
175
* invoked if action is confirmed.
176
*/
177
_confirm: function (action, callback) {
178
- var confirmData = action.confirm;
179
- var data = this.getSelections();
180
- var total = data.total ? data.total : 0;
181
- var confirmMessage = confirmData.message + ' (' + total + ' record' + (total > 1 ? 's' : '') + ')';
+ var confirmData = action.confirm,
+ data = this.getSelections(),
+ total = data.total ? data.total : 0,
+ confirmMessage = confirmData.message + ' (' + total + ' record' + (total > 1 ? 's' : '') + ')';
182
183
confirm({
184
title: confirmData.title,
0 commit comments