Skip to content

Commit 6941da3

Browse files
committed
MAGETWO-54256: [SWAT] Store view, store and website CRUD takes long time with no warning
1 parent 8313108 commit 6941da3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/code/Magento/Backend/view/adminhtml/web/js/save-with-confirm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ define([
1919
_needConfirm: function () {
2020

2121
var storeData = this.settings.storeData,
22-
22+
2323
/* edit store view*/
2424
storeViewEdit = $('[name="store[store_id]"]').length,
2525
groupId = $('[name="store[group_id]"]').val(),

dev/tests/js/jasmine/tests/app/code/Magento/Backend/view/adminhtml/web/js/validate-store.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
define([
77
'jquery',
88
'Magento_Backend/js/validate-store'
9-
], function ($, storeValidation) {
9+
], function ($, StoreValidation) {
1010
'use strict';
1111

1212
describe('Magento_Backend/js/validate-store', function () {
@@ -15,7 +15,7 @@ define([
1515

1616
beforeEach(function () {
1717
form = $('<form />');
18-
model = new storeValidation();
18+
model = new StoreValidation();
1919
});
2020

2121
it('widget extends jQuery object', function () {

0 commit comments

Comments
 (0)