Skip to content

Commit d2aa8ec

Browse files
committed
PB-500 fix static test eslint
1 parent 3a654c1 commit d2aa8ec

File tree

1 file changed

+4
-4
lines changed
  • app/code/Magento/PageBuilder/view/adminhtml/web/js/form/element

1 file changed

+4
-4
lines changed

app/code/Magento/PageBuilder/view/adminhtml/web/js/form/element/grid-size.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ define([
1414

1515
return Abstract.extend({
1616
validate: function () {
17-
let formQuery = 'index=' + this.ns;
18-
let externalForm = this.requestModule(formQuery)();
19-
let nonEmptyColumnCount = externalForm.source.data.non_empty_column_count;
20-
let maxGridSize = externalForm.source.data.max_grid_size;
17+
var formQuery = 'index=' + this.ns;
18+
var externalForm = this.requestModule(formQuery)();
19+
var nonEmptyColumnCount = externalForm.source.data.non_empty_column_count;
20+
var maxGridSize = externalForm.source.data.max_grid_size;
2121
this.validationParams = {
2222
'non_empty_column_count': nonEmptyColumnCount,
2323
'max_grid_size': maxGridSize

0 commit comments

Comments
 (0)