Fixed the control bar for the channel popout modal

master
WolverinDEV 2021-01-06 21:53:48 +01:00
parent 0bd30c6587
commit 7dcf13ea5f
2 changed files with 2 additions and 4 deletions

View File

@ -23,7 +23,7 @@
background-color: #454545;
display: flex;
flex-direction: column;
flex-direction: row;
justify-content: center;
margin-bottom: 5px;

View File

@ -44,9 +44,7 @@ class ChannelTreeModal extends AbstractModal {
renderBody(): React.ReactElement {
return (
<div className={cssStyle.container}>
<div className={cssStyle.containerControlBar}>
<ControlBar2 events={this.eventsControlBar} className={cssStyle.containerControlBar} />
</div>
<ControlBar2 events={this.eventsControlBar} className={cssStyle.containerControlBar} />
<div className={cssStyle.containerChannelTree}>
<ChannelTreeRenderer events={this.eventsTree} handlerId={this.handlerId} />
</div>