mirror of
https://github.com/guicattani/obsidian-countdown-to.git
synced 2026-07-22 05:42:39 +00:00
Fix casing on modal, remove header from settings
This commit is contained in:
parent
d0e7562572
commit
eb3f990fd9
3 changed files with 3 additions and 4 deletions
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"id": "countdown-to",
|
||||
"name": "Countdown To",
|
||||
"version": "1.3.0",
|
||||
"version": "1.3.1",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Create countdown progress bars in your notes",
|
||||
"author": "Gui Cattani",
|
||||
"authorUrl": "https://github.com/guicattani/countdown-to",
|
||||
"authorUrl": "https://github.com/guicattani/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ export class LuxonFormatHelpModal extends Modal {
|
|||
onOpen() {
|
||||
const { contentEl } = this;
|
||||
|
||||
contentEl.createEl('h2', { text: 'Info Format Help' });
|
||||
contentEl.createEl('h2', { text: 'Info format help' });
|
||||
|
||||
contentEl.createEl('h3', { text: 'Placeholders' });
|
||||
const placeholdersList = contentEl.createEl('ul');
|
||||
|
|
|
|||
|
|
@ -39,7 +39,6 @@ export class CountdownToSettingTab extends PluginSettingTab {
|
|||
display(): void {
|
||||
const { containerEl } = this;
|
||||
containerEl.empty();
|
||||
containerEl.createEl('h2', { text: 'Countdown To Settings' });
|
||||
|
||||
new Setting(containerEl).setName('Bar types').setHeading();
|
||||
new Setting(containerEl)
|
||||
|
|
|
|||
Loading…
Reference in a new issue