From 679ac04f7708f271d02483391df749ff2382f829 Mon Sep 17 00:00:00 2001 From: Pablo Neves Machado Date: Mon, 16 May 2022 16:50:06 +0200 Subject: [PATCH] Fix create rules deepLink --- .../public/management/links.ts | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/x-pack/plugins/security_solution/public/management/links.ts b/x-pack/plugins/security_solution/public/management/links.ts index 4414b7f9cee91..ee60274cbb83d 100644 --- a/x-pack/plugins/security_solution/public/management/links.ts +++ b/x-pack/plugins/security_solution/public/management/links.ts @@ -74,14 +74,16 @@ export const links: LinkItem = { }), ], globalSearchEnabled: true, - }, - { - id: SecurityPageName.rulesCreate, - title: CREATE_NEW_RULE, - path: RULES_CREATE_PATH, - globalNavEnabled: false, - skipUrlState: true, - hideTimeline: true, + links: [ + { + id: SecurityPageName.rulesCreate, + title: CREATE_NEW_RULE, + path: RULES_CREATE_PATH, + globalNavEnabled: false, + skipUrlState: true, + hideTimeline: true, + }, + ], }, { id: SecurityPageName.exceptions,