aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/shared/SettingData.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/shared/SettingData.ts b/src/shared/SettingData.ts
index a7bdf80..0d72874 100644
--- a/src/shared/SettingData.ts
+++ b/src/shared/SettingData.ts
@@ -51,10 +51,9 @@ export class FormKeymaps {
const data: { [op: string]: string } = {};
for (const key of Object.keys(json)) {
const op = json[key];
- const args = { ...op };
- delete args.type;
+ const { type, ...args } = op;
- let name = op.type;
+ let name = type;
if (Object.keys(args).length > 0) {
name += "?" + JSON.stringify(args);
}