Skip to content

Commit

Permalink
fix: show system-id as secondary text
Browse files Browse the repository at this point in the history
  • Loading branch information
Tethik committed Nov 25, 2024
1 parent b81bb74 commit f24b7c8
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ export function TeamSystemsPageList({ teamId, pagesize = 10 }) {
to={`/system/${system.id}`}
key={`sys-btn-${system.id}`}
>
<ListItemText primary={system.displayName} />
<ListItemText
primary={system.displayName}
secondary={system.id}
/>
<SystemComplianceBadge compliance={system.compliance} />
</ListItemButton>
{i < systems.length - 1 && <Divider component="li" />}
Expand Down

0 comments on commit f24b7c8

Please sign in to comment.