Skip to content

Commit ba042f0

Browse files
committed
MC-3095: Display TypeScript errors within local build process
- Fix static failures
1 parent 54aaa6b commit ba042f0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app/code/Magento/PageBuilder/view/adminhtml/web/ts/js/content-type/banner/converter/attribute/overlay-color.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
*/
55

66
import ConverterInterface from "../../../../converter/converter-interface";
7-
import {toHex} from "../../../../utils/color-converter";
87
import {DataObject} from "../../../../data-store";
8+
import {toHex} from "../../../../utils/color-converter";
99

1010
export default class OverlayColor implements ConverterInterface {
1111
/**

app/code/Magento/PageBuilder/view/adminhtml/web/ts/js/content-type/banner/converter/attribute/overlay-transparency.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
*/
55

66
import ConverterInterface from "../../../../converter/converter-interface";
7-
import extractAlphaFromRgba from "../../../../utils/extract-alpha-from-rgba";
87
import {DataObject} from "../../../../data-store";
8+
import extractAlphaFromRgba from "../../../../utils/extract-alpha-from-rgba";
99

1010
export default class OverlayTransparency implements ConverterInterface {
1111
/**

app/code/Magento/PageBuilder/view/adminhtml/web/ts/js/converter/style/paddings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ export default class Paddings implements ConverterInterface {
5252
}
5353
return result;
5454
}
55-
}
55+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
*/
55
import ko from "knockout";
66
import events from "uiEvents";
7-
import ContentTypeInterface from "../content-type.d";
87
import ContentTypeCollectionInterface from "../content-type-collection.d";
8+
import ContentTypeInterface from "../content-type.d";
99

1010
/**
1111
* Move a content type to a new index, with the option to move to a new container

0 commit comments

Comments
 (0)