Skip to content

Commit

Permalink
Merge pull request #1296 from shangyian/metrics-required-dims-bug
Browse files Browse the repository at this point in the history
Fix bug with displaying required dimensions for metrics
  • Loading branch information
shangyian authored Jan 29, 2025
2 parents c409d00 + 5cf565f commit aa7aa38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datajunction-ui/src/app/pages/NodePage/NodeInfoTab.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ export default function NodeInfoTab({ node }) {
))
: node?.required_dimensions?.map(dim => (
<span className="rounded-pill badge bg-secondary-soft PrimaryKey">
<a href={`/nodes/${node?.upstream_node}`}>{dim}</a>
<a href={`/nodes/${node?.upstream_node}`}>{dim.name}</a>
</span>
))}
</p>
Expand Down

0 comments on commit aa7aa38

Please sign in to comment.