Fix: Umlaut-Darstellung im Zurueck-Button korrigiert

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Daniel 2026-03-07 01:45:47 +01:00
parent 3ef25fc10a
commit 813e017036
3 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

2
web/dist/index.html vendored
View file

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gaming Hub</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🎮</text></svg>" />
<script type="module" crossorigin src="/assets/index-B0xoTjru.js"></script>
<script type="module" crossorigin src="/assets/index-DIgvA275.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-BL4zgtRP.css">
</head>
<body>

View file

@ -531,7 +531,7 @@ export default function StreamingTab({ data }: { data: any }) {
) : viewing.phase === 'error' ? (
<div className="stream-viewer-connecting">
{viewing.error || 'Verbindungsfehler'}
<button className="stream-btn" onClick={leaveViewing}>Zur\u00FCck</button>
<button className="stream-btn" onClick={leaveViewing}>Zurück</button>
</div>
) : null}
<video ref={remoteVideoRef} autoPlay playsInline style={viewing.phase === 'connected' ? {} : { display: 'none' }} />