feat(command_palette): hide electron-only actions on web

This commit is contained in:
Elian Doran
2025-07-27 22:05:24 +03:00
parent 1565a0fd80
commit 237a4e9a74
4 changed files with 22 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ export interface Action {
friendlyName: string;
description?: string;
iconClass?: string;
isElectronOnly?: boolean;
}
const keyboardActionsLoaded = server.get<Action[]>("keyboard-actions").then((actions) => {