Skip to content

Commit

Permalink
Merge pull request #10488 from metalice/removeing-exact-create-resource
Browse files Browse the repository at this point in the history
Bug 2025266: Removed exact on CreateResource route
  • Loading branch information
openshift-merge-robot committed Nov 22, 2021
2 parents d0bc890 + e16bcc6 commit ed3bf4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/public/components/app-contents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ const AppContents: React.FC<{}> = () => {
path="/k8s/ns/:ns/pods/:podName/containers/:name"
loader={() => import('./container').then((m) => m.ContainersDetailsPage)}
/>
<Route path="/k8s/ns/:ns/:plural/~new" exact component={CreateResource} />
<Route path="/k8s/ns/:ns/:plural/~new" component={CreateResource} />
<Route path="/k8s/ns/:ns/:plural/:name" component={ResourceDetailsPage} />
<Route path="/k8s/ns/:ns/:plural" exact component={ResourceListPage} />

Expand Down

0 comments on commit ed3bf4e

Please sign in to comment.