We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d75757c + 975b4c9 commit 0a77112Copy full SHA for 0a77112
1 file changed
apps/app/src/app/(app)/[orgId]/tasks/[taskId]/components/TaskIntegrationChecks.tsx
@@ -1046,6 +1046,18 @@ function CheckRunItem({
1046
)}
1047
</div>
1048
1049
+ {finding.evidence && Object.keys(finding.evidence).length > 0 && (
1050
+ <details className="text-xs">
1051
+ <summary className="text-muted-foreground cursor-pointer">
1052
+ View Evidence
1053
+ </summary>
1054
+ <EvidenceJsonView
1055
+ evidence={finding.evidence}
1056
+ organizationName={organizationName}
1057
+ automationName={run.checkName}
1058
+ />
1059
+ </details>
1060
+ )}
1061
1062
))}
1063
{findings.length > 3 && (
0 commit comments