From 764b34fd8fe558b9fedd2e8462fe9cd8228eae7c Mon Sep 17 00:00:00 2001 From: vibe-bot Date: Sat, 9 Aug 2025 01:03:36 +0200 Subject: [PATCH] =?UTF-8?q?UI:=20Umbenennen-Eingabefeld=20Textfarbe=20zu?= =?UTF-8?q?=20Schwarz=20ge=C3=A4ndert=20f=C3=BCr=20bessere=20Lesbarkeit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/src/App.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/web/src/App.tsx b/web/src/App.tsx index b9b029e..dc29826 100644 --- a/web/src/App.tsx +++ b/web/src/App.tsx @@ -415,12 +415,13 @@ function RenameInline({ onSubmit }: RenameInlineProps) { } return (
- setVal(e.target.value)} - placeholder="Neuer Name" - onKeyDown={(e) => { if (e.key === 'Enter') void submit(); }} - /> + setVal(e.target.value)} + placeholder="Neuer Name" + onKeyDown={(e) => { if (e.key === 'Enter') void submit(); }} + style={{ color: '#000000' }} + />
);