1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-05 23:10:41 +03:00

Merge pull request #6464 from matrix-org/gsouquet/fix-18172

Fix reactions row pushing content on IRC layout
This commit is contained in:
Germain
2021-07-26 07:40:49 +01:00
committed by GitHub
2 changed files with 7 additions and 1 deletions

View File

@@ -1165,8 +1165,9 @@ export default class EventTile extends React.Component<IProps, IState> {
/>
{ keyRequestInfo }
{ actionBar }
{ this.props.layout === Layout.IRC && (reactionsRow) }
</div>
{ reactionsRow }
{ this.props.layout !== Layout.IRC && (reactionsRow) }
{ msgOption }
</>)
);