Hide media upload form if no media are attached

This commit is contained in:
Thibaut Girka 2019-04-24 15:35:27 +02:00 committed by ThibG
parent 9add18604c
commit ffab9d626a
2 changed files with 9 additions and 9 deletions

View File

@ -16,11 +16,13 @@ export default class UploadForm extends ImmutablePureComponent {
<div className='composer--upload_form'>
<UploadProgressContainer />
<div className='content'>
{mediaIds.map(id => (
<UploadContainer id={id} key={id} />
))}
</div>
{mediaIds.size > 0 && (
<div className='content'>
{mediaIds.map(id => (
<UploadContainer id={id} key={id} />
))}
</div>
)}
</div>
);
}

View File

@ -241,16 +241,14 @@
}
.composer--upload_form {
padding: 5px;
color: $inverted-text-color;
background: $simple-background-color;
font-size: 14px;
overflow: hidden;
& > .content {
display: flex;
flex-direction: row;
flex-wrap: wrap;
font-family: inherit;
padding: 5px;
overflow: hidden;
}
}