We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f27f4a6 commit d0ede25Copy full SHA for d0ede25
jsEngine/settings/Settings.ts
@@ -69,8 +69,8 @@ export class JsEnginePluginSettingTab extends PluginSettingTab {
69
.addText(el => {
70
el.setPlaceholder('Folder')
71
.setValue(settings.startupScriptsDirectory ?? '')
72
- .onChange(async (value: string) => {
73
- settings.startupScriptsDirectory = normalizePath( value );
+ .onChange(async (val: string) => {
+ settings.startupScriptsDirectory = normalizePath(val);
74
await this.plugin.saveSettings();
75
});
76
0 commit comments