Skip to content

Commit

Permalink
ui: add system prompt text to selections title
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcMcIntosh committed Mar 19, 2024
1 parent 50eafb9 commit c0494c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ChatForm/PromptSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const PromptSelect: React.FC<PromptSelectProps> = ({
<Flex gap="2" align="center" wrap="wrap">
<Text size="2">System Prompt:</Text>
<Root disabled={disabled} onValueChange={onChange} value={value} size="1">
<Trigger title="system prompt" />
<Trigger title={value} />
<Content>
{Object.entries(prompts).map(([key, value]) => {
return (
Expand Down

0 comments on commit c0494c3

Please sign in to comment.