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

fix: incorrect subscribing event-name to navigate in cluster view

Signed-off-by: Roman <ixrock@gmail.com>
This commit is contained in:
Roman 2021-03-19 11:48:16 +02:00 committed by Sebastian Malton
parent e718b250cc
commit 2f9541f96f

View File

@ -39,7 +39,7 @@ function bindClusterManagerRouteEvents() {
// Handle cluster-view renderer process events within iframes
function bindClusterFrameRouteEvents() {
subscribeToBroadcast("renderer:navigate-cluster-view", (event, url: string) => {
subscribeToBroadcast("renderer:navigate-in-cluster", (event, url: string) => {
logger.info(`[IPC]: ${event.type}: ${url}`, { currentLocation: location.href });
navigate(url);
});