Skip to content
Snippets Groups Projects
Commit c7740c7c authored by Maria Zadnepryanets's avatar Maria Zadnepryanets
Browse files

Merge branch 'chart-navigation-bug' into 'master'

Chart navigation bug fix.

See merge request bloodyhealth/drip!287
parents 075813c3 5ec5d02b
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,9 @@ import DayColumn from './day-column'
import HorizontalGrid from './horizontal-grid'
import AppText from '../app-text'
import { connect } from 'react-redux'
import { navigate } from '../../slices/navigation'
import { getCycleDaysSortedByDate } from '../../db'
import nothingChanged from '../../db/db-unchanged'
import { scaleObservable } from '../../local-storage'
......@@ -19,7 +22,7 @@ import config from '../../config'
import { shared } from '../../i18n/en/labels'
import styles from './styles'
export default class CycleChart extends Component {
class CycleChart extends Component {
static propTypes = {
navigate: PropTypes.func,
end: PropTypes.bool
......@@ -187,3 +190,14 @@ function LoadingMoreView({ end }) {
LoadingMoreView.propTypes = {
end: PropTypes.bool
}
const mapDispatchToProps = (dispatch) => {
return({
navigate: (page) => dispatch(navigate(page)),
})
}
export default connect(
null,
mapDispatchToProps,
)(CycleChart)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment