From 6e5ed7f21c2ea91323ca169929c20a93e1561a4f Mon Sep 17 00:00:00 2001 From: silver Date: Thu, 11 Jun 2026 15:44:58 +0200 Subject: [PATCH] fix(editor): add missing noLazyImages props ...that have been overlooked in the backport #8726 Signed-off-by: silver --- src/editor.js | 2 ++ src/extensions/RichText.js | 1 + 2 files changed, 3 insertions(+) diff --git a/src/editor.js b/src/editor.js index 3b5f8a2ceac..9467b286910 100644 --- a/src/editor.js +++ b/src/editor.js @@ -324,6 +324,7 @@ window.OCA.Text.createEditor = async function ({ active: true, autofocus, showOutlineOutside: data.showOutlineOutside, + noLazyImages, }, scopedSlots, }) @@ -335,6 +336,7 @@ window.OCA.Text.createEditor = async function ({ shareToken, readOnly: data.readOnly, showOutlineOutside: data.showOutlineOutside, + noLazyImages, }, scopedSlots, }) diff --git a/src/extensions/RichText.js b/src/extensions/RichText.js index b03d8b43486..06d262d8b45 100644 --- a/src/extensions/RichText.js +++ b/src/extensions/RichText.js @@ -64,6 +64,7 @@ export default Extension.create({ extensions: [], relativePath: null, isEmbedded: false, + noLazyImages: false, } },