Skip to content

Commit 556d917

Browse files
authored
Merge pull request #127 from zenml-io/QA-Fixes
Qa fixes
2 parents 1898f22 + 3b8bcf8 commit 556d917

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/routes/routePaths.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export const routePaths = {
8484
runs: (workspace: string, id: TId): string =>
8585
`/workspaces/${workspace}/stacks/${id}/runs`,
8686
components: (id: TId, workspace: string): string =>
87-
`/workspaces/${workspace}/stacks/${id}/components`,
87+
`/workspaces/${workspace}/stacks/${id}/component`,
8888
},
8989
runs: {
9090
base: (id: TId): string => `/stacks/${id}`,

src/ui/layouts/stacks/Stacks/List/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export const List: React.FC<Props> = ({
9393
if (id) {
9494
history.push(routePaths.stacks.list(selectedWorkspace));
9595
} else {
96-
history.push(routePaths.stack.configuration(stack.id, selectedWorkspace));
96+
history.push(routePaths.stack.components(stack.id, selectedWorkspace));
9797
}
9898
};
9999

0 commit comments

Comments
 (0)