From af20c13d8b8a94e5e3667836005a3bbd6dc10e15 Mon Sep 17 00:00:00 2001 From: "Richard Kuo (Danswer)" Date: Mon, 30 Sep 2024 09:50:30 -0700 Subject: [PATCH 1/2] Fix overflow of prompt library table --- web/src/app/admin/prompt-library/promptLibrary.tsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/web/src/app/admin/prompt-library/promptLibrary.tsx b/web/src/app/admin/prompt-library/promptLibrary.tsx index 0b47bf40ad1..8a046893dfb 100644 --- a/web/src/app/admin/prompt-library/promptLibrary.tsx +++ b/web/src/app/admin/prompt-library/promptLibrary.tsx @@ -202,7 +202,7 @@ export const PromptLibraryTable = ({ ))} -
+
@@ -220,7 +220,16 @@ export const PromptLibraryTable = ({ .map((item) => ( {item.prompt} - {item.content} + + {item.content} + {item.active ? "Active" : "Inactive"}