Skip to content
Merged
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
4 changes: 1 addition & 3 deletions plans/todo.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
go screen by screen and find cleanup
any leftover zustand store
ios push to convo broken
legend list for chat thread desktop
legend list for chat thread native
yarn upgrade
update deps
remove zoom toolkit
4 changes: 2 additions & 2 deletions shared/chat/audio/audio-video.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ const DesktopAudioVideo = (props: Props) => {

const onTimeUpdate = () => {
const ct = vidRef.current?.currentTime ?? 0
const dur = vidRef.current?.duration ?? 0
if (dur === 0) return
const dur = vidRef.current?.duration
if (!dur) return
onPositionUpdated(ct / dur)
}

Expand Down
2 changes: 1 addition & 1 deletion shared/chat/chat.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
}
}

.scroll-ignore-pointer {
.scroll-ignore-pointer .WrapperMessage-hoverBox {
pointer-events: none;
}
5 changes: 5 additions & 0 deletions shared/chat/conversation/conversation.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@
}
}

[data-testid='message-list'] [data-index]:has(.WrapperMessage-hoverBox:hover) {
contain: layout style !important;
overflow: visible !important;
}

.WrapperMessage-hoverBox {
padding: 3px 16px 3px 0;
display: flex;
Expand Down
Loading