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