fix(electron): use proper UTF-8 in screen picker
All checks were successful
Build & Deploy / build (push) Successful in 59s
Build & Deploy / deploy (push) Successful in 4s
Build & Deploy / bump-version (push) Successful in 2s

Replace escaped unicode sequences (\uD83D\uDD0A, \u00e4) with actual
UTF-8 characters so the picker displays 🔊 and ä correctly.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Daniel 2026-03-10 23:31:29 +01:00
parent 4478ac6a6a
commit 7f0b17291f
2 changed files with 3 additions and 3 deletions

View file

@ -166,13 +166,13 @@ h2{font-size:16px;margin-bottom:12px;color:#ccc}
.cancel-btn{background:#3a3a4e;color:#e0e0e0;border:none;padding:8px 24px;border-radius:6px;cursor:pointer;font-size:14px}
.cancel-btn:hover{background:#4a4a5e}
</style></head><body>
<h2>Bildschirm oder Fenster w\\u00e4hlen</h2>
<h2>Bildschirm oder Fenster wählen</h2>
<div class="grid" id="grid"></div>
<div class="bottom-row">
<label class="audio-toggle">
<input type="checkbox" id="audioToggle" checked>
<span class="switch"></span>
<span class="audio-label">\\uD83D\\uDD0A Audio mitstreamen</span>
<span class="audio-label">\u{1F50A} Audio mitstreamen</span>
</label>
<button class="cancel-btn" id="cancelBtn">Abbrechen</button>
</div>