mirror of
https://github.com/mryanb/obsidian-asana.git
synced 2026-07-22 05:38:24 +00:00
docs(settings): add feedback section to settings page
- Add feedback section with link to user feedback form - Add emoji indicators for better visibility
This commit is contained in:
parent
8144510153
commit
128ac55d20
1 changed files with 9 additions and 0 deletions
|
|
@ -130,5 +130,14 @@ export class AsanaSettingTab extends PluginSettingTab {
|
|||
await this.plugin.saveSettings();
|
||||
});
|
||||
});
|
||||
|
||||
// Feedback Section
|
||||
const feedbackDesc = document.createDocumentFragment();
|
||||
const feedbackDiv = feedbackDesc.createDiv();
|
||||
feedbackDiv.innerHTML = 'Got a bug, feature request, or success story? <a href="http://ryanbantz.com/feedback/asana-for-obsidian">Share your feedback</a>. 📢📢📢';
|
||||
|
||||
new Setting(containerEl)
|
||||
.setName('Feedback')
|
||||
.setDesc(feedbackDesc);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue