Added keyboard shortcuts to settings tab

This commit is contained in:
Stela Augustinova
2025-11-27 09:23:36 +01:00
parent 4883eb0d1b
commit 765551988a

View File

@@ -12,6 +12,7 @@
import LicenseSettings from "../settings/LicenseSettings.svelte";
import { isProApp } from "../utility/proTools";
import { _t } from "../translations";
import CommandListTab from "./CommandListTab.svelte";
const menuItems = [
{
@@ -56,6 +57,13 @@
props: {},
testid: 'settings-external-tools',
},
{
label: _t('command.settings.shortcuts', { defaultMessage: 'Keyboard shortcuts' }),
identifier: 'shortcuts',
component: CommandListTab,
props: {},
testid: 'settings-shortcuts',
},
isProApp() && {
label: _t('settings.license', { defaultMessage: 'License' }),
identifier: 'license',