Skip to content

Commit 13e8042

Browse files
committed
PB-500 fix static tests for typescript.
1 parent 7a96618 commit 13e8042

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/code/Magento/PageBuilder/view/adminhtml/web/js/content-type/column-group/preview.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/code/Magento/PageBuilder/view/adminhtml/web/ts/js/content-type/column-group/preview.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export default class Preview extends PreviewCollection {
157157
}
158158
});
159159

160-
const appearance = this.contentType.dataStore.get("appearance") ? this.contentType.dataStore.get("appearance") : 'default';
160+
const appearance = this.contentType.dataStore.get("appearance") ? this.contentType.dataStore.get("appearance") : "default";
161161
this.contentType.dataStore.set("appearance", appearance);
162162
this.contentType.dataStore.set("non_empty_column_count", numCols - numEmptyColumns);
163163
this.contentType.dataStore.set("max_grid_size", getMaxGridSize());

app/code/Magento/PageBuilder/view/adminhtml/web/ts/js/content-type/column/preview.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ import {
2525
} from "../content-type-events.types";
2626
import ObservableUpdater from "../observable-updater";
2727
import PreviewCollection from "../preview-collection";
28-
import {updateColumnWidth} from "./resize";
2928
import {InitElementEventParamsInterface} from "./column-events.types";
29+
import {updateColumnWidth} from "./resize";
3030

3131
/**
3232
* @api

0 commit comments

Comments
 (0)