Skip to content

Commit

Permalink
fix(ui): correct the placeholder of chat panel mention function
Browse files Browse the repository at this point in the history
  • Loading branch information
liangfung committed Jan 26, 2025
1 parent de45082 commit 2dbcef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ee/tabby-ui/components/chat/form-editor/mention.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export const MentionList = forwardRef<MentionListActions, MentionListProps>(
{!items.length ? (
<div className="px-2 py-1.5 text-xs text-muted-foreground">
{/* If no items are found, show a message. */}
{query ? 'No results found' : 'Typing to search...'}
{query ? 'No results found' : 'Type to search...'}
</div>
) : (
<div className="grid gap-0.5">
Expand Down

0 comments on commit 2dbcef9

Please sign in to comment.