Fix Bug 62265: The Rooms header in the Select File window is duplicated

This commit is contained in:
Viktor Fomin 2023-05-05 12:02:28 +03:00
parent 9a2d8e18ee
commit a62410178b
2 changed files with 1 additions and 18 deletions

View File

@ -67,24 +67,6 @@ const SelectionPanelBody = ({
<StyledBody header={!!header} footer={!!footer}>
<div className="selection-panel_body">
<div className="selection-panel_tree-body">
{isLoaded ? (
<Text
fontWeight="700"
fontSize="18px"
className="selection-panel_folder-title"
>
{t("Common:Rooms")}
</Text>
) : (
<div className="selection-panel_folder-title">
<Loaders.Rectangle
className="selection-panel_header-loader"
width="83px"
height="24px"
/>
</div>
)}
{isLoaded ? (
<FolderTreeBody
selectionFiles={selectionFiles}

View File

@ -56,6 +56,7 @@ const StyledBody = styled.div`
grid-template-areas: "tree files" "footer footer";
grid-template-rows: auto max-content;
margin-right: -4px;
padding-top: 12px;
padding-bottom: 0;
.selection-panel_files-body {