Skip to content

Commit

Permalink
fix: use correct popout icon for templating editor
Browse files Browse the repository at this point in the history
Closes #342
  • Loading branch information
Skaiir committed Jun 4, 2024
1 parent 2b73687 commit 32d624f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/entries/templating/TemplatingEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = () => {};

Expand Down Expand Up @@ -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') }><ExternalLinkIcon /></button>
onClick={ () => onPopupOpen('feelers') }><PopupIcon /></button>
</div>;
});

Expand Down

0 comments on commit 32d624f

Please sign in to comment.