1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix focus not switching to new cluster frame (#5995)

(cherry picked from commit 592600c1bb)
This commit is contained in:
Sebastian Malton 2022-08-08 11:49:21 -07:00 committed by Janne Savolainen
parent 0711156b75
commit 2b0d4a6d38
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A

View File

@ -115,6 +115,7 @@ export class ClusterFrameHandler {
(view: LensView) => {
logger.info(`[LENS-VIEW]: cluster id=${clusterId} should now be visible`);
view.frame.classList.remove("hidden");
view.frame.focus();
ipcRenderer.send(clusterVisibilityHandler, clusterId);
},
);