datajunction-ui 0.0.1-a84 → 0.0.1-a85

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datajunction-ui",
3
- "version": "0.0.1a84",
3
+ "version": "0.0.1a85",
4
4
  "description": "DataJunction Metrics Platform UI",
5
5
  "module": "src/index.tsx",
6
6
  "repository": {
@@ -229,7 +229,7 @@ export default function NodeInfoTab({ node }) {
229
229
  ))
230
230
  : node?.required_dimensions?.map(dim => (
231
231
  <span className="rounded-pill badge bg-secondary-soft PrimaryKey">
232
- <a href={`/nodes/${node?.upstream_node}`}>{dim}</a>
232
+ <a href={`/nodes/${node?.upstream_node}`}>{dim.name}</a>
233
233
  </span>
234
234
  ))}
235
235
  </p>