Skip to content

Commit 516fe95

Browse files
authored
Merge pull request #503 from evalstate/feat/prompt-layout
Make prompt layout consistent
2 parents e76bb0a + 18684f1 commit 516fe95

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

client/src/components/PromptsTab.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,12 @@ const PromptsTab = ({
9898
setPromptArgs({});
9999
}}
100100
renderItem={(prompt) => (
101-
<>
101+
<div className="flex flex-col items-start">
102102
<span className="flex-1">{prompt.name}</span>
103-
<span className="text-sm text-gray-500">
103+
<span className="text-sm text-gray-500 text-left">
104104
{prompt.description}
105105
</span>
106-
</>
106+
</div>
107107
)}
108108
title="Prompts"
109109
buttonText={nextCursor ? "List More Prompts" : "List Prompts"}

0 commit comments

Comments
 (0)