Multi-select forwarding and deleting

This commit is contained in:
Jamie Kyle 2023-03-20 15:23:53 -07:00 committed by GitHub
parent d986356eea
commit 1d549a9991
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
82 changed files with 2607 additions and 991 deletions

View file

@ -96,7 +96,7 @@ export type PropsType = {
isMacOS: boolean;
preferredWidthFromStorage: number;
selectedConversationId: undefined | string;
selectedMessageId: undefined | string;
targetedMessageId: undefined | string;
regionCode: string | undefined;
challengeStatus: 'idle' | 'required' | 'pending';
setChallengeStatus: (status: 'idle') => void;
@ -185,7 +185,7 @@ export function LeftPane({
savePreferredLeftPaneWidth,
searchInConversation,
selectedConversationId,
selectedMessageId,
targetedMessageId,
setChallengeStatus,
setComposeGroupAvatar,
setComposeGroupExpireTimer,
@ -372,7 +372,7 @@ export function LeftPane({
conversationToOpen = helper.getConversationAndMessageInDirection(
toFind,
selectedConversationId,
selectedMessageId
targetedMessageId
);
}
}
@ -404,7 +404,7 @@ export function LeftPane({
isMacOS,
searchInConversation,
selectedConversationId,
selectedMessageId,
targetedMessageId,
showChooseGroupMembers,
showConversation,
showInbox,