Skip to content

Commit

Permalink
Address use of location URL, add appset name to tile, etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
keithchong committed Jan 10, 2024
1 parent 8b94d2b commit 0143f4d
Show file tree
Hide file tree
Showing 5 changed files with 96 additions and 69 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {ApplicationsList} from './applications-list/applications-list';

export const ApplicationsContainer = (props: RouteComponentProps<any>) => (
<Switch>
<Route exact={true} path={`${props.match.path}`} component={ApplicationsList} />
<Route exact={true} path={`${props.match.path}`} render={() => <ApplicationsList objectListKind="application" {...props}/>} />
<Route exact={true} path={`${props.match.path}/:name`} component={ApplicationDetails} />
<Route exact={true} path={`${props.match.path}/:appnamespace/:name`} component={ApplicationDetails} />
<Route exact={true} path={`${props.match.path}/:name/:namespace/:container/logs`} component={ApplicationFullscreenLogs} />
Expand Down
Loading

0 comments on commit 0143f4d

Please sign in to comment.