mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 12:19:41 +00:00
Fix padding of conversation list
This commit is contained in:
@@ -194,6 +194,7 @@ export type PropsType = {
|
||||
scrollToRowIndex?: number;
|
||||
shouldRecomputeRowHeights: boolean;
|
||||
scrollable?: boolean;
|
||||
hasDialogPadding?: boolean;
|
||||
|
||||
getPreferredBadge: PreferredBadgeSelectorType;
|
||||
i18n: LocalizerType;
|
||||
@@ -241,6 +242,7 @@ export function ConversationList({
|
||||
scrollBehavior = ScrollBehavior.Default,
|
||||
scrollToRowIndex,
|
||||
scrollable = true,
|
||||
hasDialogPadding = false,
|
||||
shouldRecomputeRowHeights,
|
||||
showChooseGroupMembers,
|
||||
showFindByUsername,
|
||||
@@ -583,7 +585,8 @@ export function ConversationList({
|
||||
<ListView
|
||||
className={classNames(
|
||||
'module-conversation-list',
|
||||
`module-conversation-list--width-${widthBreakpoint}`
|
||||
`module-conversation-list--width-${widthBreakpoint}`,
|
||||
hasDialogPadding && 'module-conversation-list--has-dialog-padding'
|
||||
)}
|
||||
width={dimensions.width}
|
||||
height={dimensions.height}
|
||||
|
||||
Reference in New Issue
Block a user