obsidian-semantic

Log | Files | Refs | README

commit e8f03522bc2ca211cc714b3b77beb6ed10ddaf12
parent 9be2b5d74806dcc4d4a4998328f424e69e23ad5a
Author: Johannes Theiner <kontakt@joethei.xyz>
Date:   Mon, 17 Jul 2023 18:36:25 +0200

Adapt to plugin guidelines (#65)

- remove header in settings
- remove logging of changed settings value
Diffstat:
Mmain.ts | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/main.ts b/main.ts @@ -120,8 +120,6 @@ class SampleSettingTab extends PluginSettingTab { containerEl.empty(); - containerEl.createEl('h2', {text: 'Settings for my awesome plugin.'}); - new Setting(containerEl) .setName('Setting #1') .setDesc('It\'s a secret') @@ -129,7 +127,6 @@ class SampleSettingTab extends PluginSettingTab { .setPlaceholder('Enter your secret') .setValue(this.plugin.settings.mySetting) .onChange(async (value) => { - console.log('Secret: ' + value); this.plugin.settings.mySetting = value; await this.plugin.saveSettings(); }));