From 590da50275cfce3292144019ae263e5de4284fd4 Mon Sep 17 00:00:00 2001 From: Julian Geppert <75723794+jgeppert@users.noreply.github.com> Date: Fri, 23 Aug 2024 18:03:08 +0200 Subject: [PATCH] fix: hide image tools in read-only mode (#571) * feat: add `hideImageToolbar` option to imagePlugin * Revert "feat: add `hideImageToolbar` option to imagePlugin" This reverts commit 0cf1f3b090187cf265148f256a835dd680f2b54f. * feat: hide image toolbar when `readOnly` is set --- src/plugins/image/ImageEditor.tsx | 60 ++++++++++++++++--------------- 1 file changed, 31 insertions(+), 29 deletions(-) diff --git a/src/plugins/image/ImageEditor.tsx b/src/plugins/image/ImageEditor.tsx index 6a567a86..b68fe16b 100644 --- a/src/plugins/image/ImageEditor.tsx +++ b/src/plugins/image/ImageEditor.tsx @@ -271,42 +271,44 @@ export function ImageEditor({ src, title, alt, nodeKey, width, height }: ImageEd {draggable && isFocused && !disableImageResize && ( )} -
- - {!disableImageSettingsButton && ( + {readOnly || ( +
- )} -
+ {!disableImageSettingsButton && ( + + )} +
+ )} ) : null