Minor bug fixes

This commit is contained in:
redphx 2024-03-10 18:01:36 +07:00
parent f75e22b5f6
commit d148fc708e

View File

@ -11003,6 +11003,10 @@ function setupQuickSettingsBar() {
const $group = CE('div', {'data-group': settingTab.group, 'class': 'bx-gone'}); const $group = CE('div', {'data-group': settingTab.group, 'class': 'bx-gone'});
for (const settingGroup of settingTab.items) { for (const settingGroup of settingTab.items) {
if (!settingGroup) {
continue;
}
$group.appendChild(CE('h2', {}, $group.appendChild(CE('h2', {},
CE('span', {}, settingGroup.label), CE('span', {}, settingGroup.label),
settingGroup.help_url && createButton({ settingGroup.help_url && createButton({