mirror of
https://github.com/element-hq/element-web.git
synced 2024-11-30 15:19:39 +03:00
Merge pull request #2566 from matrix-org/bwindels/fixfilterwhitespace
Fix: being able to size sections in leftpanel larger than their content while filtering
This commit is contained in:
commit
24db3e4804
2 changed files with 2 additions and 3 deletions
|
@ -183,7 +183,7 @@ module.exports = React.createClass({
|
||||||
componentDidMount: function() {
|
componentDidMount: function() {
|
||||||
this.dispatcherRef = dis.register(this.onAction);
|
this.dispatcherRef = dis.register(this.onAction);
|
||||||
const cfg = {
|
const cfg = {
|
||||||
layout: this._layout,
|
getLayout: () => this._layout,
|
||||||
};
|
};
|
||||||
this.resizer = new Resizer(this.resizeContainer, Distributor, cfg);
|
this.resizer = new Resizer(this.resizeContainer, Distributor, cfg);
|
||||||
this.resizer.setClassNames({
|
this.resizer.setClassNames({
|
||||||
|
|
|
@ -319,8 +319,7 @@ class Handle {
|
||||||
export class Distributor extends FixedDistributor {
|
export class Distributor extends FixedDistributor {
|
||||||
constructor(item, cfg) {
|
constructor(item, cfg) {
|
||||||
super(item);
|
super(item);
|
||||||
const layout = cfg.layout;
|
this._handle = cfg.getLayout().openHandle(item.id);
|
||||||
this._handle = layout.openHandle(item.id);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
finish() {
|
finish() {
|
||||||
|
|
Loading…
Reference in a new issue