Skip to content

Commit

Permalink
Improve copy for navigation settings
Browse files Browse the repository at this point in the history
  • Loading branch information
otaviocc committed Nov 4, 2023
1 parent 1820eb4 commit b890f0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/views/MicroPluginSettingsView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ export class MicroPluginSettingsView extends PluginSettingTab implements MicroPl

new Setting(containerEl)
.setName('Navigation')
.setDesc('Default setting to determine whether new pages should be included in the blog\'s navigation automatically.')
.setDesc('Default navigation value. Toggle to automatically include new pages in the blog\'s navigation.')
.addToggle(toggle => toggle
.setValue(this.viewModel.includePagesInNavigation)
.onChange(value => {
Expand Down
2 changes: 1 addition & 1 deletion src/views/PublishPageView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class PublishPageView extends Modal implements PublishPageViewModelDelega

new Setting(contentEl)
.setName('Navigation')
.setDesc('Override the default setting to determine whether new pages should be included in the blog\'s navigation automatically for this page.')
.setDesc('Override the default setting. Toggle to automatically include this page in the blog\'s navigation.')
.addToggle(toggle => toggle
.setValue(this.viewModel.includeInNavigation)
.onChange(value => {
Expand Down

0 comments on commit b890f0e

Please sign in to comment.