Skip to content

Commit

Permalink
Allow suggested tags to wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
TWilson023 committed Jun 6, 2024
1 parent 45563d0 commit 9e8b6ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/ui/modals/add-edit-link-modal/tags-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export default function TagsSection({
};

return (
<div className="border-b border-gray-200 pb-2">
<div className="overflow-hidden border-b border-gray-200 pb-2">
<Command
ref={commandRef}
className="relative"
Expand Down Expand Up @@ -280,7 +280,7 @@ export default function TagsSection({
</Command.List>
)}
</Command>
<div className="flex h-10 items-center space-x-2">
<div className="flex min-h-[40px] flex-wrap items-center gap-x-2 gap-y-1 py-2">
{suggestedTags.length > 0 && (
<>
<Tooltip content="AI-suggested tags based on the content of the link. Click to add.">
Expand Down

0 comments on commit 9e8b6ee

Please sign in to comment.