diff --git a/src/frontend/src/components/tableComponent/components/tableAutoCellRender/index.tsx b/src/frontend/src/components/tableComponent/components/tableAutoCellRender/index.tsx
index dd886e4fa..5ee428ccd 100644
--- a/src/frontend/src/components/tableComponent/components/tableAutoCellRender/index.tsx
+++ b/src/frontend/src/components/tableComponent/components/tableAutoCellRender/index.tsx
@@ -30,10 +30,22 @@ export default function TableAutoCellRender({
variant="outline"
size="sq"
className={cn(
- "min-w-min bg-success-background text-success-foreground hover:bg-success-background"
+ "min-w-min bg-success-background text-success-foreground hover:bg-success-background",
)}
>
- {value}
+ Success
+
+ );
+ } else if (value === "failure") {
+ return (
+
+ Failure
);
} else {
diff --git a/src/frontend/src/modals/flowLogsModal/index.tsx b/src/frontend/src/modals/flowLogsModal/index.tsx
index f76fc1978..089c8255c 100644
--- a/src/frontend/src/modals/flowLogsModal/index.tsx
+++ b/src/frontend/src/modals/flowLogsModal/index.tsx
@@ -69,6 +69,7 @@ export default function FlowLogsModal({
className="h-max-full h-full w-full"
pagination={rows.length === 0 ? false : true}
columnDefs={columns}
+ rowHeight={48}
autoSizeStrategy={{ type: "fitGridWidth" }}
rowData={rows}
headerHeight={rows.length === 0 ? 0 : undefined}
diff --git a/src/frontend/src/modals/genericModal/index.tsx b/src/frontend/src/modals/genericModal/index.tsx
index bff50a2ef..f2dfc8e99 100644
--- a/src/frontend/src/modals/genericModal/index.tsx
+++ b/src/frontend/src/modals/genericModal/index.tsx
@@ -270,10 +270,10 @@ export default function GenericModal({
ref={divRef}
className="max-h-20 overflow-y-auto custom-scroll"
>
-
+
Prompt Variables:
@@ -289,7 +289,7 @@ export default function GenericModal({
key={index}
variant="gray"
size="md"
- className="m-1 max-w-[40vw] cursor-default truncate p-2.5 text-sm"
+ className="max-w-[40vw] cursor-default truncate p-1 text-sm"
>