From 4b11a6663c074bee3b28945229aaf3a952f1a17f Mon Sep 17 00:00:00 2001 From: Tobias Leuschner Date: Sat, 9 May 2026 19:35:19 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20Passwortfeld-Sichtbarkeit=20mit=20SVG-I?= =?UTF-8?q?cons=20verbessert;=20Versionsnummer=20auf=201.0.59=20erh=C3=B6h?= =?UTF-8?q?t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.py | 6 ++++-- version.txt | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/app.py b/app.py index c7558fd..8c01357 100644 --- a/app.py +++ b/app.py @@ -2597,7 +2597,7 @@ body{background:var(--bg);color:var(--txt);font-family:-apple-system,BlinkMacSys
- +
@@ -3071,7 +3071,9 @@ function togglePwVis(inputId, btnId){ const inp=$(inputId), btn=$(btnId); const show = inp.type==='password'; inp.type = show ? 'text' : 'password'; - btn.textContent = show ? '🙈' : '👁'; + const eye=''; + const eyeOff=''; + btn.innerHTML = show ? eyeOff : eye; } async function connectWifi(){ diff --git a/version.txt b/version.txt index 4ded4f9..1b5deea 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -1.0.58 \ No newline at end of file +1.0.59 \ No newline at end of file