Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
WhenMeet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
websystem2023-2
WhenMeet
Compare revisions
cbcaf8f74ff94f0f7d4fb69dbce99ed670ce3f91 to c51a54d646b55e05a0100ad99b65c080665bfaa7
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
websystem2023-2/whenmeet
Select target project
No results found
c51a54d646b55e05a0100ad99b65c080665bfaa7
Select Git revision
Branches
main
Swap
Target
websystem2023-2/whenmeet
Select target project
websystem2023-2/whenmeet
1 result
cbcaf8f74ff94f0f7d4fb69dbce99ed670ce3f91
Select Git revision
Branches
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
[EDIT] 투표 종료 시간 포맷 변경
· b2acf217
이권민
authored
1 year ago
b2acf217
Merge branch 'main' of
https://git.ajou.ac.kr/websystem2023-2/whenmeet
· c51a54d6
이권민
authored
1 year ago
c51a54d6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
react-whenMeet/src/components/MeetingInfoForm.js
+12
-1
12 additions, 1 deletion
react-whenMeet/src/components/MeetingInfoForm.js
with
12 additions
and
1 deletion
react-whenMeet/src/components/MeetingInfoForm.js
View file @
c51a54d6
...
...
@@ -37,7 +37,18 @@ function MeetingInfoForm() {
};
const
handleVoteEnd
=
(
event
)
=>
{
setEndVote
(
event
.
target
.
value
);
const
d
=
new
Date
(
new
Date
(
event
.
target
.
value
)
-
60
*
60
*
9
*
1000
);
const
ev
=
d
.
getFullYear
()
+
"
-
"
+
String
(
d
.
getMonth
()
+
1
).
padStart
(
2
,
"
0
"
)
+
"
-
"
+
String
(
d
.
getDate
()).
padStart
(
2
,
"
0
"
)
+
"
T
"
+
String
(
d
.
getHours
()).
padStart
(
2
,
"
0
"
)
+
"
:
"
+
String
(
d
.
getMinutes
()).
padStart
(
2
,
"
0
"
);
setEndVote
(
ev
);
};
const
handleStartTimeChange
=
(
selectedHour
,
selectedMinute
)
=>
{
...
...
This diff is collapsed.
Click to expand it.