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:
parent
657b0a4c28
commit
47c112b12e
2 changed files with 16 additions and 8 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue