Skip to content

Commit 19a424c

Browse files
committed
PB-290: Image Content Type Fails to Render in Admin Through Block/Dynamic Block
- fix static test failure
1 parent 5834bc3 commit 19a424c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/code/Magento/PageBuilder/view/adminhtml/web/ts/js/content-type/products/mass-converter/carousel-widget-directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export default class WidgetDirective extends BaseWidgetDirective {
5858
} as { [key: string]: any; };
5959

6060
if (data.sort_order) {
61-
attributes.sort_order = data.sort_order
61+
attributes.sort_order = data.sort_order;
6262
}
6363

6464
if (typeof data[data.condition_option] === "string") {

app/code/Magento/PageBuilder/view/adminhtml/web/ts/js/content-type/products/mass-converter/widget-directive.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ export default class WidgetDirective extends BaseWidgetDirective {
5454
condition_option: data.condition_option,
5555
condition_option_value: "",
5656
type_name: "Catalog Products List",
57-
conditions_encoded: this.encodeWysiwygCharacters(data.conditions_encoded || "")
57+
conditions_encoded: this.encodeWysiwygCharacters(data.conditions_encoded || ""),
5858
} as { [key: string]: any; };
5959

6060
if (data.sort_order) {
61-
attributes.sort_order = data.sort_order
61+
attributes.sort_order = data.sort_order;
6262
}
6363

6464
if (typeof data[data.condition_option] === "string") {

0 commit comments

Comments
 (0)