From 12ec5beb9501556f943f137660a308fce413f470 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Thu, 30 Jul 2020 11:19:52 +1000 Subject: [PATCH] fix bug preventing loading of out of view cells in conversations list --- ts/components/session/LeftPaneContactSection.tsx | 2 +- ts/components/session/LeftPaneMessageSection.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/components/session/LeftPaneContactSection.tsx b/ts/components/session/LeftPaneContactSection.tsx index 5df607f93..68de97471 100644 --- a/ts/components/session/LeftPaneContactSection.tsx +++ b/ts/components/session/LeftPaneContactSection.tsx @@ -269,7 +269,7 @@ export class LeftPaneContactSection extends React.Component { rowHeight={64} rowRenderer={this.renderRow} width={width} - autoHeight={true} + autoHeight={false} /> )} diff --git a/ts/components/session/LeftPaneMessageSection.tsx b/ts/components/session/LeftPaneMessageSection.tsx index 9b33e50cf..93c5c1f04 100644 --- a/ts/components/session/LeftPaneMessageSection.tsx +++ b/ts/components/session/LeftPaneMessageSection.tsx @@ -192,7 +192,7 @@ export class LeftPaneMessageSection extends React.Component { rowHeight={64} rowRenderer={this.renderRow} width={width} - autoHeight={true} + autoHeight={false} /> )}