[deploy] Fix dashboard syntax error by stripping bad icons
All checks were successful
Deploy Discord Bot / deploy (push) Successful in 36s

This commit is contained in:
Pascal Prießnitz
2025-12-03 21:29:38 +01:00
parent 90bb12d054
commit a9cc01dfaa

View File

@@ -43,19 +43,19 @@ router.get('/', (req, res) => {
<aside class="sidebar">
<div class="brand">Papo Control</div>
<div class="nav">
<a class="active" href="#overview" data-target="overview"><span class="icon">[]</span> Uebersicht</a>
<a href="#tickets" data-target="tickets"><span class="icon">[]</span> Ticketsystem</a>
<a href="#automod" data-target="automod" class="automod-link"><span class="icon">[]</span> Automod</a>
<a href="#welcome" data-target="welcome" class="welcome-link"><span class="icon">[]</span> Willkommen</a>
<a href="#dynamicvoice" data-target="dynamicvoice" class="dynamicvoice-link"><span class="icon">[]</span> Dynamic Voice</a>
<a href="#birthday" data-target="birthday" class="birthday-link"><span class="icon">[]</span> Birthday</a>
<a href="#reactionroles" data-target="reactionroles" class="reactionroles-link"><span class="icon">[]</span> Reaction Roles</a>
<a href="#statuspage" data-target="statuspage" class="statuspage-link"><span class="icon">[]</span> Statuspage</a>
<a href="#settings" data-target="settings"><span class="icon">[]</span> Einstellungen</a>
<a href="#modules" data-target="modules"><span class="icon">[]</span> Module</a>
<a href="#register" data-target="register" class="register-link"><span class="icon">[]</span> Register</a>
<a href="#events" data-target="events" class="events-link"><span class="icon">[]</span> Events</a>
<a href="#admin" data-target="admin" class="admin-link hidden"><span class="icon">[]</span> Admin</a>
<a class="active" href="#overview" data-target="overview"><span class="icon">-</span> Uebersicht</a>
<a href="#tickets" data-target="tickets"><span class="icon">-</span> Ticketsystem</a>
<a href="#automod" data-target="automod" class="automod-link"><span class="icon">-</span> Automod</a>
<a href="#welcome" data-target="welcome" class="welcome-link"><span class="icon">-</span> Willkommen</a>
<a href="#dynamicvoice" data-target="dynamicvoice" class="dynamicvoice-link"><span class="icon">-</span> Dynamic Voice</a>
<a href="#birthday" data-target="birthday" class="birthday-link"><span class="icon">-</span> Birthday</a>
<a href="#reactionroles" data-target="reactionroles" class="reactionroles-link"><span class="icon">-</span> Reaction Roles</a>
<a href="#statuspage" data-target="statuspage" class="statuspage-link"><span class="icon">-</span> Statuspage</a>
<a href="#settings" data-target="settings"><span class="icon">-</span> Einstellungen</a>
<a href="#modules" data-target="modules"><span class="icon">-</span> Module</a>
<a href="#register" data-target="register" class="register-link"><span class="icon">-</span> Register</a>
<a href="#events" data-target="events" class="events-link"><span class="icon">-</span> Events</a>
<a href="#admin" data-target="admin" class="admin-link hidden"><span class="icon">-</span> Admin</a>
</div>
<div class="muted"> Angemeldet als <span id="userInfo"></span></div>
<button id="logoutBtn" class="logout">Logout</button>