Skip to content

Commit 3a654c1

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

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-
const formQuery = 'index=' + this.ns;
18-
const externalForm = this.requestModule(formQuery)();
19-
const nonEmptyColumnCount = externalForm.source.data.non_empty_column_count;
20-
const maxGridSize = externalForm.source.data.max_grid_size;
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;
2121
this.validationParams = {
2222
'non_empty_column_count': nonEmptyColumnCount,
2323
'max_grid_size': maxGridSize

0 commit comments

Comments
 (0)