From 380aa31e6afb4b52df7657993f06aeee6fb4ccdb Mon Sep 17 00:00:00 2001 From: Hannes Hertach Date: Tue, 26 May 2026 17:58:05 +0200 Subject: [PATCH] ew: use main for quick edit instead of ew branch --- blocks/canvas/ew-editor-wysiwyg/ew-editor-wysiwyg.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blocks/canvas/ew-editor-wysiwyg/ew-editor-wysiwyg.js b/blocks/canvas/ew-editor-wysiwyg/ew-editor-wysiwyg.js index 2478b9e0..e3794ae6 100644 --- a/blocks/canvas/ew-editor-wysiwyg/ew-editor-wysiwyg.js +++ b/blocks/canvas/ew-editor-wysiwyg/ew-editor-wysiwyg.js @@ -71,8 +71,8 @@ export class EwEditorWysiwyg extends LitElement { const segments = path.split('/'); const pathWithoutOrgRepo = segments.slice(2).join('/'); const encodedPath = pathWithoutOrgRepo.split('/').map(encodeURIComponent).join('/'); - const quickEdit = new URLSearchParams(window.location.search).get('quick-edit') || 'ew'; - const base = `${getPreviewOrigin(org, repo)}/${encodedPath}?nx=ew&quick-edit=${encodeURIComponent(quickEdit)}`; + const quickEdit = new URLSearchParams(window.location.search).get('quick-edit') || 'on'; + const base = `${getPreviewOrigin(org, repo)}/${encodedPath}?quick-edit=${encodeURIComponent(quickEdit)}`; return `${base}&controller=parent`; }