Skip to content
GitLab
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
97e65a6f
Commit
97e65a6f
authored
Jul 09, 2017
by
Gijs Hendriksen
Browse files
'View entire calendar' now no longer shows a back button in the calendar
parent
9fa624a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/components/Welcome.js
View file @
97e65a6f
...
...
@@ -49,7 +49,7 @@ const eventListToSections = (eventList) => {
const
Footer
=
props
=>
(
<
TouchableOpacity
onPress
=
{()
=>
props
.
navigate
(
'
eventList
'
)}
onPress
=
{()
=>
props
.
navigate
(
'
eventList
'
,
true
)}
style
=
{
styles
.
footer
}
>
<
Text
style
=
{
styles
.
footerText
}
>
BEKIJK
DE
GEHELE
AGENDA
<
/Text
>
...
...
@@ -61,7 +61,7 @@ Footer.propTypes = {
};
const
mapDispatchToPropsFooter
=
dispatch
=>
({
navigate
:
scene
=>
dispatch
(
navigate
(
scene
)),
navigate
:
(
scene
,
newSection
)
=>
dispatch
(
navigate
(
scene
,
newSection
)),
});
const
FooterComponent
=
connect
(()
=>
({}),
mapDispatchToPropsFooter
)(
Footer
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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