Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/fluux/src/components/RoomHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ export function RoomHeader({
>
<Users className="w-4 h-4" />
<span className="text-sm font-medium">{uniqueOccupantCount}</span>
<ChevronRight className={`w-4 h-4 transition-transform ${showOccupants ? 'rotate-180' : ''}`} />
<ChevronRight className={`w-4 h-4 transition-transform ${showOccupants ? '' : 'rotate-180'}`} />
</button>
</Tooltip>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ exports[`ChatView > Snapshots > should match snapshot with messages 1`] = `
</button>
</div>
<div
class="relative"
class="inline-flex relative"
>
<div
class="inline-flex"
Expand Down Expand Up @@ -332,7 +332,7 @@ exports[`ChatView > Snapshots > should match snapshot with messages 1`] = `
</button>
</div>
<div
class="relative"
class="inline-flex relative"
>
<div
class="inline-flex"
Expand Down
2 changes: 1 addition & 1 deletion apps/fluux/src/components/conversation/MessageToolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export const MessageToolbar = memo(function MessageToolbar({
</Tooltip>

{/* More options button with dropdown */}
<div className="relative" ref={moreMenuRef}>
<div className="inline-flex relative" ref={moreMenuRef}>
<Tooltip content={t('chat.moreOptions')} position="top" disabled={showReactionPicker || showMoreMenu}>
<button
ref={moreButtonRef}
Expand Down
Loading