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' }} + />
);