Skip to content

Commit

Permalink
feat: fix links, use name in control overview
Browse files Browse the repository at this point in the history
  • Loading branch information
mcuckson committed Jul 5, 2023
1 parent fc99711 commit ded11b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ export function ControlOverviewItemResources({
return (
<TableRow key={resource.id}>
<TableCell>{resource.type}</TableCell>
<TableCell>{resource.reference}</TableCell>
<TableCell>{resource.name}</TableCell>
<TableCell>{resource.environment}</TableCell>
<TableCell>
{dayjs(resource.lastSeen).format("MMM D YYYY h:mm A")}
Expand Down
2 changes: 1 addition & 1 deletion pages/applications/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export default function Page({ apps, complianceData }) {
<AppTile
key={i}
name={app.name}
app_id={app.app_id}
id={app.id}
complianceData={complianceData}
tier={app.tier}
data_classification={app.data_classification}
Expand Down

0 comments on commit ded11b2

Please sign in to comment.