Skip to content

Commit 3431368

Browse files
committed
MAGETWO-92410: [Jenkins] TSLint Static Failures
- Remove debugger statement - Reorder imports
1 parent fe8155f commit 3431368

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ export default function createContentType(
4848
const [previewComponent, contentComponent] = resolvedPromises;
4949
contentType.preview = previewComponent;
5050
contentType.content = contentComponent;
51-
debugger;
5251
contentType.dataStore.update(
5352
prepareData(config, data),
5453
);

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
import ko from "knockout";
77
import mageUtils from "mageUtils";
88
import events from "uiEvents";
9-
import Content from "./content-type/content";
109
import ContentTypeConfigInterface from "./content-type-config.d";
1110
import ContentTypeInterface from "./content-type.d";
12-
import DataStore from "./data-store";
11+
import Content from "./content-type/content";
1312
import Preview from "./content-type/preview";
13+
import DataStore from "./data-store";
1414

1515
export default class ContentType implements ContentTypeInterface {
1616
public id: string = mageUtils.uniqueid();

0 commit comments

Comments
 (0)