Skip to content

Commit 5d06325

Browse files
committed
MC-2245: Build Stabilization
Fix quotes
1 parent 27e8471 commit 5d06325

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/PageBuilder/view/adminhtml/web/ts/js/master-format

1 file changed

+1
-1
lines changed

app/code/Magento/PageBuilder/view/adminhtml/web/ts/js/master-format/filter-html.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default function filterHtml(element: JQuery): JQuery {
2222
element.find("*").each(
2323
(index, value) => {
2424
const isIframe = value.tagName === "IFRAME";
25-
const isBeingBypassedByThisFilter = !!$(value).closest('.bypass-html-filter').length;
25+
const isBeingBypassedByThisFilter = !!$(value).closest(".bypass-html-filter").length;
2626
if (!isIframe && !isBeingBypassedByThisFilter) {
2727
$(value).contents().filter(isWhiteSpaceOrComment).remove();
2828
}

0 commit comments

Comments
 (0)