1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-10 09:22:25 +03:00

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
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) {