Skip to content

Commit

Permalink
Update ConceptDetail component UI
Browse files Browse the repository at this point in the history
  • Loading branch information
benzerbett committed Feb 6, 2024
1 parent ab323c8 commit 7e5aeef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pages/orgs/[org]/sources/[source]/concepts/[concept]/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -324,9 +324,9 @@ function ConceptDetail() {
<div key={index} style={{ display: "flex", alignItems: "center", gap: 3, margin: "7px 0", }} >
{index + 1}. <Chip size="small" variant="filled" color="primary" label={version?.uuid} onClick={(ev) => {
ev.preventDefault();
router.push(
`/orgs/${org}/sources/${source}/concepts/${concept}/${version?.uuid}`
);
// router.push(
// `/orgs/${org}/sources/${source}/concepts/${concept}/${version?.uuid}`
// );
}}
/>
</div>
Expand Down

0 comments on commit 7e5aeef

Please sign in to comment.