We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e76bb0a + 18684f1 commit 516fe95Copy full SHA for 516fe95
client/src/components/PromptsTab.tsx
@@ -98,12 +98,12 @@ const PromptsTab = ({
98
setPromptArgs({});
99
}}
100
renderItem={(prompt) => (
101
- <>
+ <div className="flex flex-col items-start">
102
<span className="flex-1">{prompt.name}</span>
103
- <span className="text-sm text-gray-500">
+ <span className="text-sm text-gray-500 text-left">
104
{prompt.description}
105
</span>
106
- </>
+ </div>
107
)}
108
title="Prompts"
109
buttonText={nextCursor ? "List More Prompts" : "List Prompts"}
0 commit comments