Skip to content

Commit 8c8415a

Browse files
committed
Add release workflow
1 parent 7043bce commit 8c8415a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

main.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default class XenQuotes extends Plugin {
3131
});
3232

3333
if (this.ribbonIconEl) {
34-
this.ribbonIconEl.addClass('my-plugin-ribbon-class');
34+
this.ribbonIconEl.addClass('xenquotes-ribbon-class');
3535
}
3636
}
3737

@@ -50,7 +50,7 @@ export default class XenQuotes extends Plugin {
5050
});
5151

5252
// Add settings tab
53-
this.addSettingTab(new SampleSettingTab(this.app, this));
53+
this.addSettingTab(new XenQuotesSettingTab(this.app, this));
5454
}
5555

5656
async fetchAndInsertQuote(view: MarkdownView) {
@@ -93,7 +93,7 @@ export default class XenQuotes extends Plugin {
9393
}
9494
}
9595

96-
class SampleSettingTab extends PluginSettingTab {
96+
class XenQuotesSettingTab extends PluginSettingTab {
9797
plugin: XenQuotes;
9898

9999
constructor(app: App, plugin: XenQuotes) {
@@ -150,7 +150,7 @@ class SampleSettingTab extends PluginSettingTab {
150150
}
151151
await this.plugin.fetchAndInsertQuote(activeLeaf);
152152
});
153-
this.plugin.ribbonIconEl.addClass('my-plugin-ribbon-class');
153+
this.plugin.ribbonIconEl.addClass('xenquotes-ribbon-class');
154154
}
155155
} else {
156156
if (this.plugin.ribbonIconEl) {

0 commit comments

Comments
 (0)