Skip to content

Commit

Permalink
changed ribbon icon
Browse files Browse the repository at this point in the history
  • Loading branch information
VFMR committed Dec 23, 2023
1 parent 04add54 commit ba3b6c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-todoist",
"name": "Obsidian to Todoist",
"version": "0.2.1",
"version": "0.2.2",
"minAppVersion": "0.15.0",
"description": "Send tasks from Obsidian to Todoist",
"author": "VFMR",
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default class MyPlugin extends Plugin {
this.api = new TodoistApi(this.settings.apiToken);

// This creates an icon in the left ribbon.
const ribbonIconEl = this.addRibbonIcon('dice', 'Send to Todoist', async (evt: MouseEvent) => {
const ribbonIconEl = this.addRibbonIcon('file-check-2', 'Send to Todoist', async (evt: MouseEvent) => {
const editor = this.app.workspace.getActiveViewOfType(MarkdownView).editor;
const fileContents = await editor.getValue();
findAndSendTasks(this.api,
Expand Down

0 comments on commit ba3b6c7

Please sign in to comment.