From 0577f009e0bc5d1a9a731c6b64f3c4645f719f78 Mon Sep 17 00:00:00 2001 From: Joe Reuter Date: Wed, 13 May 2020 10:06:21 +0200 Subject: [PATCH] remove trailing slash in graph sample data links --- x-pack/plugins/graph/common/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/graph/common/constants.ts b/x-pack/plugins/graph/common/constants.ts index 3c3ee2b125896..42c05cfde1a44 100644 --- a/x-pack/plugins/graph/common/constants.ts +++ b/x-pack/plugins/graph/common/constants.ts @@ -7,5 +7,5 @@ export const APP_ICON = 'graphApp'; export function createWorkspacePath(id: string) { - return `/app/graph/#/workspace/${id}`; + return `/app/graph#/workspace/${id}`; }