Skip to content

Commit d0ede25

Browse files
committed
unify variable naming
1 parent f27f4a6 commit d0ede25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jsEngine/settings/Settings.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ export class JsEnginePluginSettingTab extends PluginSettingTab {
6969
.addText(el => {
7070
el.setPlaceholder('Folder')
7171
.setValue(settings.startupScriptsDirectory ?? '')
72-
.onChange(async (value: string) => {
73-
settings.startupScriptsDirectory = normalizePath( value );
72+
.onChange(async (val: string) => {
73+
settings.startupScriptsDirectory = normalizePath(val);
7474
await this.plugin.saveSettings();
7575
});
7676
});

0 commit comments

Comments
 (0)