remove trailing slash in graph sample data links (#66358)

This commit is contained in:
Joe Reuter 2020-05-15 14:04:04 +02:00 committed by GitHub
parent d17489790c
commit 7254727149
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,5 +7,5 @@
export const APP_ICON = 'graphApp';
export function createWorkspacePath(id: string) {
return `/app/graph/#/workspace/${id}`;
return `/app/graph#/workspace/${id}`;
}