Fix alignment of reactions in bubble layout thread view (#7534)

* Fix alignment of reactions in bubble layout thread view

* Remove duplicate download link in thread view panel

* Fix bugs with layout of file pills
This commit is contained in:
Michael Telatynski 2022-01-13 22:46:11 +00:00 committed by GitHub
parent 657b0a4c28
commit 47c112b12e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 8 deletions

View file

@ -223,7 +223,8 @@ export default class MFileBody extends React.Component<IProps, IState> {
</span>;
}
const showDownloadLink = this.props.tileShape || !this.props.showGenericPlaceholder;
const showDownloadLink = (this.props.tileShape || !this.props.showGenericPlaceholder) &&
this.props.tileShape !== TileShape.Thread;
if (isEncrypted) {
if (!this.state.decryptedBlob) {