feat: add update failed display when the graph execution error

This commit is contained in:
BennyKok
2023-12-15 16:16:35 +08:00
parent ccf167d48e
commit 23db3c1a45
8 changed files with 110 additions and 49 deletions
+2 -2
View File
@@ -8,12 +8,12 @@ export async function CodeBlock(props: { code: string; lang: Lang }) {
});
return (
<div className="relative w-full max-w-full text-sm">
<div className="relative w-full text-sm">
{/* max-w-[calc(32rem-1.5rem-1.5rem)] */}
{/* <div className=""> */}
<p
// tabIndex={1}
className="[&>pre]:p-4 rounded-sm "
className="[&>pre]:p-4 rounded-lg max-h-96 overflow-auto w-full"
style={{
overflowWrap: "break-word",
}}