From 32d624fe23f094d1d6e18fd558dec92c03f1d067 Mon Sep 17 00:00:00 2001 From: Valentin Serra Date: Tue, 4 Jun 2024 13:16:00 +0200 Subject: [PATCH] fix: use correct popout icon for templating editor Closes #342 --- src/components/entries/templating/TemplatingEditor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/entries/templating/TemplatingEditor.js b/src/components/entries/templating/TemplatingEditor.js index 39fe0b60..a5245443 100644 --- a/src/components/entries/templating/TemplatingEditor.js +++ b/src/components/entries/templating/TemplatingEditor.js @@ -5,7 +5,7 @@ import { forwardRef } from 'preact/compat'; import { FeelersEditor } from 'feelers'; import { useStaticCallback } from '../../../hooks'; -import { ExternalLinkIcon } from '../../icons'; +import { PopupIcon } from '../../icons'; const noop = () => {}; @@ -125,7 +125,7 @@ const CodeEditor = forwardRef((props, ref) => { type="button" title="Open pop-up editor" class="bio-properties-panel-open-feel-popup" - onClick={ () => onPopupOpen('feelers') }> + onClick={ () => onPopupOpen('feelers') }> ; });