Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Fix zIndex of peristent apps in miniMode #7429

Merged
merged 1 commit into from
Dec 21, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/views/elements/AppTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ export default class AppTile extends React.Component<IProps, IState> {
// Also wrap the PersistedElement in a div to fix the height, otherwise
// AppTile's border is in the wrong place
appTileBody = <div className="mx_AppTile_persistedWrapper">
<PersistedElement persistKey={this.persistKey}>
<PersistedElement zIndex={this.props.miniMode ? 10 : 9}persistKey={this.persistKey}>
{ appTileBody }
</PersistedElement>
</div>;
Expand Down