Add clear control to product name field

This commit is contained in:
beatz174-bit
2025-11-21 18:50:20 +10:00
parent 48df3ea41e
commit 6bca88fe2b
+16 -1
View File
@@ -150,7 +150,22 @@ export const ManageProductsScreen = () => {
/>
<Stack spacing={1}>
<Typography variant="subtitle1">Add Product</Typography>
<TextField label="Name" value={name} onChange={(event) => setName(event.target.value)} />
<TextField
label="Name"
value={name}
onChange={(event) => setName(event.target.value)}
InputProps={
name
? {
endAdornment: (
<Button onClick={() => setName('')} size="small">
Clear
</Button>
),
}
: undefined
}
/>
<TextField
select
label="Category"