Skip to content

Commit

Permalink
Merge pull request #565 from CodeCrowCorp/dev
Browse files Browse the repository at this point in the history
Fix: long descriptions pushing content
  • Loading branch information
gagansuie authored Jun 27, 2023
2 parents 74967c4 + 2017cbd commit 065a61b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/Channel/Chat/DropdownViewChannel.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
</ul>
<ul tabindex="-1" class="dropdown-content menu shadow bg-base-200 rounded-box md:w-[23rem]">
<li on:click={() => copyToClipboard(channel.description)} on:keyup>
<a class="text-sm max-w-md">{channel.description || 'No description'}</a>
<a class="text-sm max-w-md flex">{channel.description || 'No description'}</a>
</li>
<li on:click={() => copyToClipboard(channel.category)} on:keyup>
<a
Expand Down

0 comments on commit 065a61b

Please sign in to comment.