UI: Umbenennen-Eingabefeld Textfarbe zu Schwarz geändert für bessere Lesbarkeit

This commit is contained in:
vibe-bot 2025-08-09 01:03:36 +02:00
parent 5173175617
commit 764b34fd8f

View file

@ -420,6 +420,7 @@ function RenameInline({ onSubmit }: RenameInlineProps) {
onChange={(e) => setVal(e.target.value)}
placeholder="Neuer Name"
onKeyDown={(e) => { if (e.key === 'Enter') void submit(); }}
style={{ color: '#000000' }}
/>
<button type="button" className="tab" onClick={() => void submit()}>Umbenennen</button>
</div>