ampm false

This commit is contained in:
2023-07-23 16:53:08 +03:30
parent 3021bde999
commit 459ee099c7
5 changed files with 10 additions and 1 deletions

View File

@@ -115,6 +115,7 @@ function DashboardMachinaryOfficeComponent() {
}
>
<MobileDateTimePicker
ampm={false}
onChange={(newValue) => {
const date = new Date(newValue);
const formattedDate = moment(date)
@@ -142,7 +143,11 @@ function DashboardMachinaryOfficeComponent() {
onClick={() => {
column.setFilterValue(null);
}}
sx={{color: column.getFilterValue() ? "rgba(0, 0, 0, 0.54)" : "#bfbfbf"}}
sx={{
color: column.getFilterValue()
? "rgba(0, 0, 0, 0.54)"
: "#bfbfbf",
}}
>
<ClearIcon />
</IconButton>

View File

@@ -116,6 +116,7 @@ function DashboardPassengerOfficeComponent() {
}
>
<MobileDateTimePicker
ampm={false}
onChange={(newValue) => {
const date = new Date(newValue);
const formattedDate = moment(date)

View File

@@ -117,6 +117,7 @@ function DashboardPassengerOfficeComponent() {
}
>
<MobileDateTimePicker
ampm={false}
onChange={(newValue) => {
const date = new Date(newValue);
const formattedDate = moment(date)

View File

@@ -116,6 +116,7 @@ function DashboardProvinceManagerComponent() {
}
>
<MobileDateTimePicker
ampm={false}
onChange={(newValue) => {
const date = new Date(newValue);
const formattedDate = moment(date)

View File

@@ -116,6 +116,7 @@ function DashboardTransportationAssistanceComponent() {
}
>
<MobileDateTimePicker
ampm={false}
onChange={(newValue) => {
const date = new Date(newValue);
const formattedDate = moment(date)