Skip to content

Commit

Permalink
chore: update settings
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislicodes committed Jun 8, 2023
1 parent 1fd08ea commit f61649c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/components/obsidian/SettingsTab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@ export class SettingsTab extends PluginSettingTab {

containerEl.empty();

containerEl.createEl('h2', { text: 'Obsidian Chess Study Settings' });

new Setting(containerEl)
.setName('Board Orientation')
.setName('Board orientation')
.setDesc('Sets the default orientation of the board')
.addDropdown((dropdown) => {
dropdown.addOption('white', 'White');
Expand All @@ -44,7 +42,7 @@ export class SettingsTab extends PluginSettingTab {
});

new Setting(containerEl)
.setName('Board Color')
.setName('Board color')
.setDesc('Sets the default color of the board')
.addDropdown((dropdown) => {
dropdown.addOption('green', 'Green');
Expand Down

0 comments on commit f61649c

Please sign in to comment.