UI: Umbenennen-Eingabefeld Textfarbe zu Schwarz geändert für bessere Lesbarkeit
This commit is contained in:
parent
5173175617
commit
764b34fd8f
1 changed files with 7 additions and 6 deletions
|
|
@ -415,12 +415,13 @@ function RenameInline({ onSubmit }: RenameInlineProps) {
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<div style={{ display: 'flex', gap: 8, alignItems: 'center' }}>
|
<div style={{ display: 'flex', gap: 8, alignItems: 'center' }}>
|
||||||
<input
|
<input
|
||||||
value={val}
|
value={val}
|
||||||
onChange={(e) => setVal(e.target.value)}
|
onChange={(e) => setVal(e.target.value)}
|
||||||
placeholder="Neuer Name"
|
placeholder="Neuer Name"
|
||||||
onKeyDown={(e) => { if (e.key === 'Enter') void submit(); }}
|
onKeyDown={(e) => { if (e.key === 'Enter') void submit(); }}
|
||||||
/>
|
style={{ color: '#000000' }}
|
||||||
|
/>
|
||||||
<button type="button" className="tab" onClick={() => void submit()}>Umbenennen</button>
|
<button type="button" className="tab" onClick={() => void submit()}>Umbenennen</button>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue