Fix casing on modal, remove header from settings

This commit is contained in:
Guilherme Cattani 2025-04-06 19:40:53 +02:00
parent d0e7562572
commit eb3f990fd9
3 changed files with 3 additions and 4 deletions

View file

@ -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
}

View file

@ -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');

View file

@ -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)