Skip to content

Commit

Permalink
web/satellite/v2: fix settings link on Projects table view
Browse files Browse the repository at this point in the history
Fixed project settings link on My projects table view

Issue:
#6731

Change-Id: Ice34ccffc7fa0c0fc72e926966507b33944249b5
  • Loading branch information
VitaliiShpital authored and Storj Robot committed Jan 29, 2024
1 parent 8211f85 commit 45d99ed
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -199,7 +199,8 @@ function openProject(item: ProjectItemModel): void {
*/
function onSettingsClick(item: ProjectItemModel): void {
projectsStore.selectProject(item.id);
router.push(`/projects/${projectsStore.state.selectedProject.urlId}/dashboard`);
router.push(`/projects/${projectsStore.state.selectedProject.urlId}/settings`);
analyticsStore.pageVisit('/projects/settings');
}
/**
Expand Down

0 comments on commit 45d99ed

Please sign in to comment.