chore: simplify mobile tab label from 'Info & Characters' to 'Info'

This commit is contained in:
Lucas 'Paperboy' Rose-Winters
2025-10-16 12:17:43 +11:00
parent aef9cf812d
commit c756704abc
+1 -1
View File
@@ -1514,7 +1514,7 @@ function setupMobileTabs() {
} }
// Combine Info and Characters into one tab // Combine Info and Characters into one tab
if (hasInfoOrCharacters) { if (hasInfoOrCharacters) {
tabs.push('<button class="rpg-mobile-tab ' + (tabs.length === 0 ? 'active' : '') + '" data-tab="info-characters"><i class="fa-solid fa-book"></i><span>Info & Characters</span></button>'); tabs.push('<button class="rpg-mobile-tab ' + (tabs.length === 0 ? 'active' : '') + '" data-tab="info-characters"><i class="fa-solid fa-book"></i><span>Info</span></button>');
} }
const $tabNav = $('<div class="rpg-mobile-tabs">' + tabs.join('') + '</div>'); const $tabNav = $('<div class="rpg-mobile-tabs">' + tabs.join('') + '</div>');