Skip to content

Commit

Permalink
Fixes buttons to not reload when linking
Browse files Browse the repository at this point in the history
  • Loading branch information
elijahbenizzy committed Apr 1, 2024
1 parent b6403b3 commit 1651018
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion telemetry/ui/src/components/routes/AppList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export const AppListTable = (props: { apps: ApplicationSummary[]; projectId: str
</TableCell>
<TableCell>{app.num_steps}</TableCell>
<TableCell>
<Button color="white" href={`/project/${props.projectId}/${app.app_id}`}>
<Button color="white" className={'cursor-pointer'}>
Steps
</Button>
</TableCell>
Expand Down
4 changes: 3 additions & 1 deletion telemetry/ui/src/components/routes/ProjectList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ export const ProjectListTable = (props: { projects: Project[] }) => {
</TableCell>
<TableCell>{project.num_apps}</TableCell>
<TableCell>
<Button color="white">App Runs</Button>
<Button color="white" className={'cursor-pointer'}>
App Runs
</Button>
</TableCell>
</TableRow>
);
Expand Down

0 comments on commit 1651018

Please sign in to comment.