Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
thalia
ThaliApp
Commits
d0524624
Commit
d0524624
authored
Mar 28, 2018
by
Gijs Hendriksen
Browse files
Change registration start time format from hh:m to hh:mm
parent
a6795f44
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/ui/screens/events/Event.js
View file @
d0524624
...
...
@@ -156,7 +156,7 @@ class Event extends Component {
text
=
event
.
no_registration_message
;
}
}
else
if
(
!
regStarted
)
{
const
registrationStart
=
Moment
(
event
.
registration_start
).
format
(
'
D MMM YYYY, HH:m
'
);
const
registrationStart
=
Moment
(
event
.
registration_start
).
format
(
'
D MMM YYYY, HH:m
m
'
);
text
=
this
.
props
.
t
(
'
Registration will open {{start}}
'
,
{
start
:
registrationStart
});
}
else
if
(
!
regAllowed
)
{
text
=
this
.
props
.
t
(
'
Registration is not possible anymore.
'
);
...
...
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