Toggle navigation
Toggle navigation
This project
Loading...
Sign in
HyeonJun Jeon
/
Extended-Calendar
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
HyeonJun Jeon
2022-06-07 02:12:48 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fdeef6035950ea743862cf60cb737c5cb00e396d
fdeef603
1 parent
3d795dbd
[Fix] 1 week is 7 days
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
src/components/Week.js
src/components/Week.js
View file @
fdeef60
...
...
@@ -30,7 +30,7 @@ const Row = () => {
const
ndate
=
new
Date
(
state
.
date
);
toSunday
(
ndate
);
for
(
let
i
=
0
;
i
<
6
;
i
++
)
{
for
(
let
i
=
0
;
i
<
7
;
i
++
)
{
items
.
push
(
<
GridItem
key
=
{
i
}
targetDate
=
{
new
Date
(
ndate
)}
/>
)
;
moveDate
(
ndate
,
"day"
,
1
);
}
...
...
Please
register
or
login
to post a comment