mirror of
https://github.com/devonthesofa/obsidian-note-status.git
synced 2026-07-22 05:45:04 +00:00
fix: use standard icon
This commit is contained in:
parent
f9a51d3a8c
commit
1155c07794
3 changed files with 3 additions and 3 deletions
2
main.ts
2
main.ts
|
|
@ -75,7 +75,7 @@ export default class NoteStatus extends Plugin {
|
|||
});
|
||||
|
||||
// Add ribbon icon
|
||||
this.addRibbonIcon('status-pane', 'Open status pane', () => {
|
||||
this.addRibbonIcon('tag', 'Open status pane', () => {
|
||||
this.openStatusPane();
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
},
|
||||
"isDesktopOnly": false,
|
||||
"license": "MIT",
|
||||
"icon": "status-pane",
|
||||
"icon": "tag",
|
||||
"repository": "https://github.com/devonthesofa/obsidian-note-status",
|
||||
"issues": "https://github.com/devonthesofa/obsidian-note-status/issues",
|
||||
"releaseNotes": "Initial release with status management, customizable UI, and file explorer integration.",
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ export class StatusPaneViewController extends View {
|
|||
|
||||
getDisplayText(): string { return 'Status pane'; }
|
||||
|
||||
getIcon(): string { return 'status-pane'; }
|
||||
getIcon(): string { return 'tag'; }
|
||||
|
||||
async onOpen(): Promise<void> {
|
||||
await this.setupPane();
|
||||
|
|
|
|||
Loading…
Reference in a new issue