From 5acf569a2795de06fefab47354d6c8b230d251c3 Mon Sep 17 00:00:00 2001 From: Brian Teeman Date: Tue, 16 Aug 2022 08:55:45 +0100 Subject: [PATCH] external links docusauris uses _to_ for internal links and _href_ for external links This way the link gets the icon to indicate that the link opens in a new tab etc. In the footer the two community links were done this way but the More and Legal Links were not. This PR corrects that --- docusaurus.config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index 358527f3..f92b948d 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -150,11 +150,11 @@ const config = { items: [ { label: 'Blog', - to: 'https://community.joomla.org/blogs.html', + href: 'https://community.joomla.org/blogs.html', }, { label: 'Magazine', - to: 'https://magazine.joomla.org/', + href: 'https://magazine.joomla.org/', }, ], }, @@ -163,11 +163,11 @@ const config = { items: [ { label: 'Privacy', - to: 'https://www.joomla.org/privacy-policy.html', + href: 'https://www.joomla.org/privacy-policy.html', }, { label: 'Terms', - to: 'https://tm.joomla.org', + href: 'https://tm.joomla.org', }, ], },