Fix missing "discover more" url in LYS tour (#48109)
* Add URL to discover more link * Changelog
This commit is contained in:
parent
9b251ce318
commit
c53e0282a3
|
@ -64,8 +64,14 @@ export const SiteVisibilityTour = ( { onClose }: { onClose: () => void } ) => {
|
|||
'woocommerce'
|
||||
),
|
||||
{
|
||||
// eslint-disable-next-line jsx-a11y/anchor-has-content, jsx-a11y/anchor-is-valid
|
||||
link: <a href="#" target="_blank" />,
|
||||
link: (
|
||||
// eslint-disable-next-line jsx-a11y/anchor-has-content
|
||||
<a
|
||||
href="https://woocommerce.com/document/configuring-woocommerce-settings/coming-soon-mode/"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
/>
|
||||
),
|
||||
}
|
||||
),
|
||||
},
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
Significance: patch
|
||||
Type: fix
|
||||
|
||||
Add missing URL to discover more link in LYS tour
|
Loading…
Reference in New Issue