Skip to content

Commit

Permalink
fix (console): view database launches wrong route
Browse files Browse the repository at this point in the history
PR-URL: hasura/graphql-engine-mono#6747
GitOrigin-RevId: bc59aacff64bedd5a97ee03c0ff8783f0bd42b15
  • Loading branch information
vijayprasanna13 authored and hasura-bot committed Nov 4, 2022
1 parent 8f0a0be commit c447044
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ export const GDCDatabaseListItem: React.FC<GDCDatabaseListItemItemProps> = ({
className="mr-xs"
isLoading={isDropSourceInProgress}
onClick={() => {
dispatch(_push(`/data/v2/manage?database=${dataSource.name}`));
dispatch(
_push(`/data/v2/manage/database?database=${dataSource.name}`)
);
}}
disabled={isInconsistentDataSource}
>
Expand Down

0 comments on commit c447044

Please sign in to comment.