From d4bafdcddd76f5046393ebfc24bfd4f1f1b2c857 Mon Sep 17 00:00:00 2001 From: Timo <16718859+toger5@users.noreply.github.com> Date: Tue, 21 Dec 2021 17:42:42 +0100 Subject: [PATCH] Fix zIndex of peristent apps in miniMode (#7429) Fixes a bug, where the persistent (PiP mode app) is hidden behind another widget in the right panel or a maximised widget. --- src/components/views/elements/AppTile.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/elements/AppTile.tsx b/src/components/views/elements/AppTile.tsx index a8e2308976..ed8e88a542 100644 --- a/src/components/views/elements/AppTile.tsx +++ b/src/components/views/elements/AppTile.tsx @@ -508,7 +508,7 @@ export default class AppTile extends React.Component { // Also wrap the PersistedElement in a div to fix the height, otherwise // AppTile's border is in the wrong place appTileBody =
- + { appTileBody }
;