atualização do timezone para bagota
parent
1d190a5dd4
commit
62efca88c3
|
@ -6,7 +6,7 @@ module.exports = {
|
||||||
collate: "utf8mb4_bin"
|
collate: "utf8mb4_bin"
|
||||||
},
|
},
|
||||||
dialect: process.env.DB_DIALECT || "mysql",
|
dialect: process.env.DB_DIALECT || "mysql",
|
||||||
timezone: "-03:00",
|
timezone: "-05:00",
|
||||||
host: process.env.DB_HOST,
|
host: process.env.DB_HOST,
|
||||||
database: process.env.DB_NAME,
|
database: process.env.DB_NAME,
|
||||||
username: process.env.DB_USER,
|
username: process.env.DB_USER,
|
||||||
|
|
|
@ -64,7 +64,7 @@ const isWeekend = async () => {
|
||||||
) {
|
) {
|
||||||
|
|
||||||
// Specify your desired timezone
|
// Specify your desired timezone
|
||||||
const brazilTimeZone = "America/Sao_Paulo";
|
const brazilTimeZone = "America/Bogota";
|
||||||
|
|
||||||
const currentDateUtc = new Date();
|
const currentDateUtc = new Date();
|
||||||
|
|
||||||
|
|
|
@ -433,8 +433,8 @@ const Dashboard = () => {
|
||||||
tickets
|
tickets
|
||||||
<Tooltip
|
<Tooltip
|
||||||
title={`Os dados informados abaixo é baseado na data: ${new Date().toLocaleDateString(
|
title={`Os dados informados abaixo é baseado na data: ${new Date().toLocaleDateString(
|
||||||
"pt-BR",
|
"es",
|
||||||
{ timeZone: "UTC" }
|
{ timeZone: "UTC-5" }
|
||||||
)}`}
|
)}`}
|
||||||
color="primary"
|
color="primary"
|
||||||
TransitionComponent={Zoom}
|
TransitionComponent={Zoom}
|
||||||
|
@ -516,7 +516,7 @@ const Dashboard = () => {
|
||||||
<Tooltip
|
<Tooltip
|
||||||
title={`Os dados informados abaixo é baseado na data: ${new Date().toLocaleDateString(
|
title={`Os dados informados abaixo é baseado na data: ${new Date().toLocaleDateString(
|
||||||
"pt-BR",
|
"pt-BR",
|
||||||
{ timeZone: "UTC" }
|
{ timeZone: "UTC-5" }
|
||||||
)}`}
|
)}`}
|
||||||
color="primary"
|
color="primary"
|
||||||
TransitionComponent={Zoom}
|
TransitionComponent={Zoom}
|
||||||
|
|
Loading…
Reference in New Issue