From 0f7bbd0fc5b43bfef24e82f39b33b03885e548cc Mon Sep 17 00:00:00 2001 From: Ben Hong Date: Tue, 12 Mar 2024 12:18:54 -0700 Subject: [PATCH] docs: fix missing security guide in navigation (#54830) The paths for the security guide were flipped in the original PR. As a result, it looked for a markdown file in the best-practices directory when it should have looked for it in the guide directory instead. PR Close #54830 --- adev/src/app/sub-navigation-data.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adev/src/app/sub-navigation-data.ts b/adev/src/app/sub-navigation-data.ts index b4a4ceff870..6d35896ee07 100644 --- a/adev/src/app/sub-navigation-data.ts +++ b/adev/src/app/sub-navigation-data.ts @@ -766,8 +766,8 @@ const DOCS_SUB_NAVIGATION_DATA: NavigationItem[] = [ }, { label: 'Security', - path: 'guide/security', // Have not refactored due to build issues - contentPath: 'best-practices/security', + path: 'best-practices/security', + contentPath: 'guide/security', // Have not refactored due to build issues }, { label: 'Accessibility',