Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
b578afbc
Unverified
Commit
b578afbc
authored
Jan 16, 2024
by
Noah Alderton
Committed by
GitHub
Jan 16, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: DatePicker Local Date (#2766)
Fix DatePicker Local Date
parent
ad94e8e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
DatePicker.tsx
web/src/components/kit/DatePicker.tsx
+3
-2
No files found.
web/src/components/kit/DatePicker.tsx
View file @
b578afbc
...
@@ -4,7 +4,7 @@ import { useEffect, useRef, useState } from "react";
...
@@ -4,7 +4,7 @@ import { useEffect, useRef, useState } from "react";
import
useClickAway
from
"react-use/lib/useClickAway"
;
import
useClickAway
from
"react-use/lib/useClickAway"
;
import
{
memoServiceClient
}
from
"@/grpcweb"
;
import
{
memoServiceClient
}
from
"@/grpcweb"
;
import
{
DAILY_TIMESTAMP
}
from
"@/helpers/consts"
;
import
{
DAILY_TIMESTAMP
}
from
"@/helpers/consts"
;
import
{
getDateStampByDate
,
isFutureDate
}
from
"@/helpers/datetime"
;
import
{
getDateStampByDate
,
getTimeStampByDate
,
isFutureDate
}
from
"@/helpers/datetime"
;
import
useCurrentUser
from
"@/hooks/useCurrentUser"
;
import
useCurrentUser
from
"@/hooks/useCurrentUser"
;
import
{
useTranslate
}
from
"@/utils/i18n"
;
import
{
useTranslate
}
from
"@/utils/i18n"
;
import
Icon
from
"../Icon"
;
import
Icon
from
"../Icon"
;
...
@@ -41,7 +41,8 @@ const DatePicker: React.FC<DatePickerProps> = (props: DatePickerProps) => {
...
@@ -41,7 +41,8 @@ const DatePicker: React.FC<DatePickerProps> = (props: DatePickerProps) => {
});
});
const
m
=
new
Map
();
const
m
=
new
Map
();
Object
.
entries
(
memoCreationStats
).
forEach
(([
k
])
=>
{
Object
.
entries
(
memoCreationStats
).
forEach
(([
k
])
=>
{
const
date
=
getDateStampByDate
(
k
);
const
utcOffsetMilliseconds
=
new
Date
().
getTimezoneOffset
()
*
60
*
1000
;
const
date
=
getDateStampByDate
(
new
Date
(
getTimeStampByDate
(
k
)
+
utcOffsetMilliseconds
));
m
.
set
(
date
,
true
);
m
.
set
(
date
,
true
);
});
});
setCountByDate
(
m
);
setCountByDate
(
m
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment