Skip to content

Commit 46f4945

Browse files
gcp-cherry-pick-bot[bot]amit-o
andauthoredFeb 3, 2025··
fix(ui): Solve issue with navigating with dropdown from an application's page (cherry-pick #21737) (#21746)
Signed-off-by: Amit Oren <amit@coralogix.com> Co-authored-by: Amit Oren <amit@coralogix.com>

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎ui/src/app/applications/components/application-details/application-details-app-dropdown.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const ApplicationsDetailsAppDropdown = (props: {appName: string}) => {
4343
})
4444
.slice(0, 100) // take top 100 results after filtering to avoid performance issues
4545
.map(app => (
46-
<li key={app.metadata.name} onClick={() => ctx.navigation.goto(getAppUrl(app))}>
46+
<li key={app.metadata.name} onClick={() => ctx.navigation.goto(`/${getAppUrl(app)}`)}>
4747
{app.metadata.name} {app.metadata.name === props.appName && ' (current)'}
4848
</li>
4949
))

0 commit comments

Comments
 (0)
Please sign in to comment.