You've already forked matrix-react-sdk
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:
committed by
GitHub
parent
657b0a4c28
commit
47c112b12e
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user