diff --git a/frontend/src/lib/components/CommandPalette/paletteData.ts b/frontend/src/lib/components/CommandPalette/paletteData.ts index 50ab4e47f..491235c04 100644 --- a/frontend/src/lib/components/CommandPalette/paletteData.ts +++ b/frontend/src/lib/components/CommandPalette/paletteData.ts @@ -1,69 +1,69 @@ import * as m from '$paraglide/messages'; export interface NavigationLink { - label: string; - href: string; + label: string; + href: string; } export const navigationLinks: NavigationLink[] = [ - { - label: 'analytics', - href: '/' - }, - { - label: 'myAssignments', - href: '/my-assignments' - }, - { - label: 'domains', - href: '/folders' - }, - { - label: 'assets', - href: '/assets' - }, - { - label: 'complianceAssessments', - href: '/compliance-assessments' - }, - { - label: 'riskAssessments', - href: '/risk-assessments' - }, - { - label: 'riskScenarios', - href: '/risk-scenarios' - }, - { - label: 'ebiosRM', - href: '/ebios-rm' - }, - { - label: 'actionPlan', - href: '/applied-controls' - }, - { - label: 'evidences', - href: '/evidences' - }, - { - label: 'xRays', - href: '/x-rays' - }, - { - label: 'tpSolutions', - href: '/solutions' - }, - { - label: 'libraries', - href: '/libraries' - }, - { - label: 'myProfile', - href: '/my-profile' - }, - { - label: 'settings', - href: '/settings' - } + { + label: 'analytics', + href: '/' + }, + { + label: 'myAssignments', + href: '/my-assignments' + }, + { + label: 'domains', + href: '/folders' + }, + { + label: 'assets', + href: '/assets' + }, + { + label: 'complianceAssessments', + href: '/compliance-assessments' + }, + { + label: 'riskAssessments', + href: '/risk-assessments' + }, + { + label: 'riskScenarios', + href: '/risk-scenarios' + }, + { + label: 'ebiosRM', + href: '/ebios-rm' + }, + { + label: 'actionPlan', + href: '/applied-controls' + }, + { + label: 'evidences', + href: '/evidences' + }, + { + label: 'xRays', + href: '/x-rays' + }, + { + label: 'tpSolutions', + href: '/solutions' + }, + { + label: 'libraries', + href: '/libraries' + }, + { + label: 'myProfile', + href: '/my-profile' + }, + { + label: 'settings', + href: '/settings' + } ];