Skip to content

Commit

Permalink
fix(wip): tasks navigate to /objects/tasks with viewId (#6528)
Browse files Browse the repository at this point in the history
ISSUE (BUG)

Fixes: #6523 

Description:
- [ ] Should work on Command Menu
- [ ] Should also work on Global Goto Hotkeys
- [ ] Should navigate with viewId, as when we click on Navigationbar it
is navigating with viewId.
  • Loading branch information
Nabhag8848 authored Aug 7, 2024
1 parent 12e55fd commit e265efc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const GotoHotkeysEffect = () => {
useGoToHotkeys('c', '/objects/companies');
useGoToHotkeys('o', '/objects/opportunities');
useGoToHotkeys('s', '/settings/profile');
useGoToHotkeys('t', '/tasks');
useGoToHotkeys('t', '/objects/tasks');

return <></>;
};
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const COMMAND_MENU_COMMANDS: Command[] = [
},
{
id: 'go-to-tasks',
to: '/tasks',
to: '/objects/tasks',
label: 'Go to Tasks',
type: CommandType.Navigate,
firstHotKey: 'G',
Expand Down

0 comments on commit e265efc

Please sign in to comment.