Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions React-frontend/src/components/Management/FilterCase.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@ function FilterCase() {
<KeyboardDatePicker
margin="normal"
id="date-picker-dialog"
label="From Date"
// label="From Date"
placeholder="From Date"
name="From Date"
format="yyyy-MM-dd"
variant="outlined"
Expand All @@ -183,7 +184,8 @@ function FilterCase() {
<KeyboardDatePicker
margin="normal"
id="date-picker-dialog"
label="To Date"
// label="To Date"
placeholder="To Date"
name="To Date"
format="yyyy-MM-dd"
variant="outlined"
Expand All @@ -193,8 +195,9 @@ function FilterCase() {
invalidDateMessage
autoComplete="To Date"
type="text"
value={to_date}
className={classes.date}
autoFocus
value={to_date}
onChange={(e) => setToDate(e)}
KeyboardButtonProps={{
"aria-label": "change date",
Expand Down