Skip to content

Commit

Permalink
Fix 'View Full Trace'
Browse files Browse the repository at this point in the history
  • Loading branch information
Weves committed Feb 18, 2024
1 parent 61e2e68 commit 4d2959f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions web/src/app/admin/connector/[ccPairId]/IndexingAttemptsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,14 +116,14 @@ export function IndexingAttemptsTable({ ccPair }: { ccPair: CCPairFullInfo }) {
{indexAttempt.error_msg || "-"}
</Text>
{indexAttempt.full_exception_trace && (
<Text
onClick={() =>
setIndexAttemptTracePopupId(indexAttempt.id)
}
className="mt-2 text-link cursor-pointer"
<div
onClick={() => {
setIndexAttemptTracePopupId(indexAttempt.id);
}}
className="mt-2 text-link cursor-pointer select-none"
>
View Full Trace
</Text>
</div>
)}
</div>
</TableCell>
Expand Down

0 comments on commit 4d2959f

Please sign in to comment.