diff --git a/front/src/AppNavbar.tsx b/front/src/AppNavbar.tsx
index 544db676b..0b6f09bc4 100644
--- a/front/src/AppNavbar.tsx
+++ b/front/src/AppNavbar.tsx
@@ -49,6 +49,7 @@ export function AppNavbar() {
}
/>
diff --git a/front/src/modules/command-menu/components/CommandMenu.tsx b/front/src/modules/command-menu/components/CommandMenu.tsx
index 765f7dc14..842c6322a 100644
--- a/front/src/modules/command-menu/components/CommandMenu.tsx
+++ b/front/src/modules/command-menu/components/CommandMenu.tsx
@@ -98,6 +98,11 @@ export function CommandMenu() {
label: 'Go to Settings',
shortcuts: ['G', 'S'],
},
+ {
+ to: '/tasks',
+ label: 'Go to Tasks',
+ shortcuts: ['G', 'T'],
+ },
];
const matchingCommand = commands.find(
@@ -162,7 +167,6 @@ export function CommandMenu() {
{matchingCommand && (
{commands
- .filter((cmd) =>
- cmd.shortcuts?.join('').includes(search?.toUpperCase()),
+ .filter(
+ (cmd) =>
+ cmd.shortcuts?.join('').includes(search?.toUpperCase()) ||
+ cmd.label?.toUpperCase().includes(search?.toUpperCase()),
)
.map((cmd) => (
>;
}