Skip to content

Commit

Permalink
[main.ts][xs]: lowercase commands
Browse files Browse the repository at this point in the history
  • Loading branch information
olayway committed Jul 11, 2023
1 parent 72e8155 commit cecc04d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default class Flowershow extends Plugin {
await this.addCommands();

addIcon('flowershow-icon', seedling);
this.addRibbonIcon("flowershow-icon", "Publish With Flowershow", async () => {
this.addRibbonIcon("flowershow-icon", "Publish with Flowershow", async () => {
this.openPublishStatusModal();
});
}
Expand All @@ -53,7 +53,7 @@ export default class Flowershow extends Plugin {

this.addCommand({
id: 'publish-note',
name: 'Publish Single Note',
name: 'Publish single note',
checkCallback: (checking: boolean) => {
if (checking) {
return !!this.app.workspace.getActiveFile();
Expand All @@ -64,7 +64,7 @@ export default class Flowershow extends Plugin {

this.addCommand({
id: 'publish-all-notes',
name: 'Publish All Notes',
name: 'Publish all notes',
checkCallback: (checking: boolean) => {
if (checking) {
return true
Expand Down

0 comments on commit cecc04d

Please sign in to comment.