Add link into modal header

I unified the link with the link in details panel.
The target link should be replaced later in a different task.
[MAILPOET-6354]
This commit is contained in:
Jan Lysý
2024-12-12 21:09:39 +01:00
committed by Aschepikov
parent cece3711f8
commit 9edd4a6096

View File

@@ -1,8 +1,7 @@
import { Modal, SearchControl } from '@wordpress/components'; import { ExternalLink, Modal, SearchControl } from '@wordpress/components';
import { __ } from '@wordpress/i18n'; import { __ } from '@wordpress/i18n';
import { PersonalizationTag, storeName } from '../../store'; import { PersonalizationTag, storeName } from '../../store';
import { useSelect } from '@wordpress/data'; import { useSelect } from '@wordpress/data';
import { external, Icon } from '@wordpress/icons';
import './index.scss'; import './index.scss';
import { useState } from '@wordpress/element'; import { useState } from '@wordpress/element';
import { CategoryMenu } from './category-menu'; import { CategoryMenu } from './category-menu';
@@ -49,10 +48,12 @@ const PersonalizationTagsModal = ( { onInsert, isOpened, closeCallback } ) => {
> >
<p> <p>
{ __( { __(
'Insert shortcodes to dynamically fill in information and personalize your emails. Learn more', 'Insert shortcodes to dynamically fill in information and personalize your emails.',
'mailpoet' 'mailpoet'
) }{ ' ' } ) }{ ' ' }
<Icon icon={ external } size={ 16 } /> <ExternalLink href="https://kb.mailpoet.com/article/215-personalize-newsletter-with-shortcodes#list">
{ __( 'Learn more', 'mailpoet' ) }
</ExternalLink>
</p> </p>
<SearchControl onChange={ setSearchQuery } value={ searchQuery } /> <SearchControl onChange={ setSearchQuery } value={ searchQuery } />
<CategoryMenu <CategoryMenu