Skip to content

Commit

Permalink
fix: tray menu does not appear
Browse files Browse the repository at this point in the history
Dangit, local testing didn't catch this because of leftover compiled javascript modules.
  • Loading branch information
starpit committed Sep 7, 2022
1 parent fc8c7f9 commit 03e2a72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/plugin-kubectl-tray-menu/src/tray/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export async function emitRefreshFromRenderer() {
ipcRenderer.send(
'/exec/invoke',
JSON.stringify({
module: 'plugin-kubectl',
module: 'plugin-kubectl-tray-menu',
main: 'initTray',
args: {
command: '/tray/refresh'
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugin-kubectl-tray-menu/src/tray/renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default async function renderer(ipcRenderer: import('electron').IpcRender
ipcRenderer.send(
'/exec/invoke',
JSON.stringify({
module: 'plugin-kubectl',
module: 'plugin-kubectl-tray-menu',
main: 'initTray',
args: {
command: '/tray/init'
Expand Down

0 comments on commit 03e2a72

Please sign in to comment.