Skip to content

Commit

Permalink
Added semi-colons where appropriate
Browse files Browse the repository at this point in the history
  • Loading branch information
Erallie committed Dec 6, 2024
1 parent 3e3b409 commit 8bd801f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ class DiscordTimestampsSettingTab extends PluginSettingTab {
this.plugin.settings.history = [];
void this.plugin.saveSettings();
})
})
});
//#endregion

//#region timezone
Expand All @@ -605,10 +605,10 @@ class DiscordTimestampsSettingTab extends PluginSettingTab {
const timezoneFrag = new DocumentFragment;
timezoneFrag.textContent = 'The timezone timestamps will be displayed in.';
timezoneFrag.createEl('br');
timezoneFrag.createEl('strong', { text: 'Auto-detect timezone' })
timezoneFrag.appendText(' must be ')
timezoneFrag.createEl('strong', { text: 'disabled' })
timezoneFrag.appendText(' to change this.')
timezoneFrag.createEl('strong', { text: 'Auto-detect timezone' });
timezoneFrag.appendText(' must be ');
timezoneFrag.createEl('strong', { text: 'disabled' });
timezoneFrag.appendText(' to change this.');

new Setting(containerEl)
.setName('Local timezone')
Expand All @@ -630,7 +630,7 @@ class DiscordTimestampsSettingTab extends PluginSettingTab {
else {
dropdown.setDisabled(false);
}
})
});
//#endregion

}
Expand Down

0 comments on commit 8bd801f

Please sign in to comment.