From 0b15fa467bdb3098d3b68a02d5610efb9157de05 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 25 Nov 2019 16:46:29 +1100 Subject: [PATCH 1/3] Fix the conversation scrollbar when only few conversations #560 --- ts/components/LeftPane.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/ts/components/LeftPane.tsx b/ts/components/LeftPane.tsx index 90a32a90c..b0e833662 100644 --- a/ts/components/LeftPane.tsx +++ b/ts/components/LeftPane.tsx @@ -237,6 +237,7 @@ export class LeftPane extends React.Component { rowHeight={64} rowRenderer={this.renderRow} width={width} + autoHeight /> )} From c19b53d3fd79b826a42b7644d2d041d8261628c0 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 25 Nov 2019 18:01:11 +1100 Subject: [PATCH 2/3] Disable horizontal scrollbar on conversation list #560 --- stylesheets/_modules.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/stylesheets/_modules.scss b/stylesheets/_modules.scss index 70468c93e..6fa4cbeaa 100644 --- a/stylesheets/_modules.scss +++ b/stylesheets/_modules.scss @@ -3306,6 +3306,7 @@ flex-grow: 1; flex-shrink: 1; overflow-y: auto; + overflow-x: hidden; } .module-left-pane__virtual-list { From 2c789c8b0e681fa81439e8ddc44b79d07c6bf4ba Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 26 Nov 2019 11:29:20 +1100 Subject: [PATCH 3/3] fix lint --- ts/components/LeftPane.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/components/LeftPane.tsx b/ts/components/LeftPane.tsx index b0e833662..71e67f027 100644 --- a/ts/components/LeftPane.tsx +++ b/ts/components/LeftPane.tsx @@ -237,7 +237,7 @@ export class LeftPane extends React.Component { rowHeight={64} rowRenderer={this.renderRow} width={width} - autoHeight + autoHeight={true} /> )}