Skip to content

Commit

Permalink
Merge pull request #2715 from MahtabBukhari/endpoint-sholud-be-call-able
Browse files Browse the repository at this point in the history
fix(update-analyze): git analyse endpoint should be callable
  • Loading branch information
Rassl authored Feb 14, 2025
2 parents 46a47b1 + 6cac52c commit 5a915fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Universe/Graph/UI/NodeControls/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,8 @@ export const NodeControls = memo(() => {
<PopoverOption
data-testid="generate_tests"
onClick={() => {
if (selectedNode?.name) {
handleAnalyzeTestCoverage(selectedNode.name)
if (selectedNode?.properties?.name) {
handleAnalyzeTestCoverage(selectedNode?.properties?.name)
}

handleClose()
Expand Down

0 comments on commit 5a915fb

Please sign in to comment.