mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-04-08 20:08:36 +02:00
Fix view full trace styling
This commit is contained in:
parent
3c2fb21c11
commit
aa7c811a9a
@ -111,19 +111,21 @@ export function IndexingAttemptsTable({ ccPair }: { ccPair: CCPairFullInfo }) {
|
||||
<TableCell>{indexAttempt.new_docs_indexed}</TableCell>
|
||||
<TableCell>{indexAttempt.total_docs_indexed}</TableCell>
|
||||
<TableCell>
|
||||
<Text className="flex flex-wrap whitespace-normal">
|
||||
<div>{indexAttempt.error_msg || "-"}</div>
|
||||
<div>
|
||||
<Text className="flex flex-wrap whitespace-normal">
|
||||
{indexAttempt.error_msg || "-"}
|
||||
</Text>
|
||||
{indexAttempt.full_exception_trace && (
|
||||
<div
|
||||
<Text
|
||||
onClick={() =>
|
||||
setIndexAttemptTracePopupId(indexAttempt.id)
|
||||
}
|
||||
className="mt-2 text-link cursor-pointer"
|
||||
>
|
||||
View Full Trace
|
||||
</div>
|
||||
</Text>
|
||||
)}
|
||||
</Text>
|
||||
</div>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user