Skip to content

Commit a636b76

Browse files
[APIView] Fix: Show decorators in Changed types only diff view when related method has changes (#13550)
1 parent bbb9863 commit a636b76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dotnet/APIView/ClientSPA/src/app/_workers/apitree-builder.worker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function buildCodePanelRows(nodeIdHashed: string, navigationTree: NavigationTree
8888
if (node.relatedNodeIdHash && !node.isNodeWithDiff && !node.isNodeWithDiffInDescendants && apiTreeBuilderData?.diffStyle == TREE_DIFF_STYLE)
8989
{
9090
let relatedNode = codePanelData?.nodeMetaData[node.relatedNodeIdHash]!;
91-
if (!relatedNode.isNodeWithDiff && !node.isNodeWithDiffInDescendants && !visibleNodes.has(node.relatedNodeIdHash))
91+
if (!relatedNode.isNodeWithDiff && !relatedNode.isNodeWithDiffInDescendants && !visibleNodes.has(node.relatedNodeIdHash))
9292
{
9393
return;
9494
}

0 commit comments

Comments
 (0)