Skip to content

Commit

Permalink
feat(playground): display referenceId in symbol tab (#2790)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dunqing committed Mar 22, 2024
1 parent dc3f6e7 commit 7d604e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/playground/symbols.js
Expand Up @@ -27,7 +27,7 @@ export const renderSymbols = (symbols) => {
symbolId: index,
nodeId,
span: symbols.spans[index],
references: symbols.resolvedReferences[index].map((id) => symbols.references[id]),
references: symbols.resolvedReferences[index].map((id) => ({ referenceId: id, ...symbols.references[id] })),
})
})
cacheSymbols = target
Expand Down

0 comments on commit 7d604e5

Please sign in to comment.