We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6844179 commit 219cf53Copy full SHA for 219cf53
1 file changed
client/src/webview/views/diagnostics/vc-changes.ts
@@ -38,7 +38,7 @@ export function renderVCLine(line: string, className = "", predicateContent?: st
38
const { binder, type, predicate } = parseImplicationLine(line);
39
return /*html*/`
40
<div class="vc-line ${className}">
41
- <div class="vc-binder-cell"><span class="vc-node vc-binder" title="${type}">${escapeHtml(binder)}</span></div>
+ ${binder ? /*html*/`<div class="vc-binder-cell"><span class="vc-node vc-binder" title="${type}">${escapeHtml(binder)}</span></div>` : ""}
42
<div class="vc-predicate-cell"><span class="vc-node">${predicateContent ?? renderHighlightedInlineExpression(predicate)}</span></div>
43
</div>
44
`;
0 commit comments