Skip to content

Commit 25dc1d3

Browse files
committed
Fix Conversation dropdown button visibility
1 parent eb76a54 commit 25dc1d3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/server/webui/src/components/Sidebar.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,12 +228,13 @@ function ConversationItem({
228228
>
229229
{conv.name}
230230
</button>
231+
231232
<div tabIndex={0} className="dropdown dropdown-end h-5">
232233
<BtnWithTooltips
233234
// on mobile, we always show the ellipsis icon
234235
// on desktop, we only show it when the user hovers over the conversation item
235236
// we use opacity instead of hidden to avoid layout shift
236-
className="cursor-pointer opacity-100 md:opacity-0 group-hover:opacity-100"
237+
className="cursor-pointer opacity-100 xl:opacity-20 group-hover:opacity-100"
237238
onClick={() => {}}
238239
tooltipsContent="More"
239240
>

0 commit comments

Comments
 (0)