Skip to content

Commit

Permalink
Merge pull request #135 from apertureless/patch/122
Browse files Browse the repository at this point in the history
πŸ› Fix #122 reactive mixin
  • Loading branch information
apertureless authored Jul 2, 2017
2 parents a2b023d + 7a048a0 commit e8cbef7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/mixins/reactiveData.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ module.exports = {
chart.destroy()
this.renderChart(this.chartData, this.options)
}
} else {
this.renderChart(this.chartData, this.options)
}
}
}
Expand Down
2 changes: 2 additions & 0 deletions src/mixins/reactiveProp.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ module.exports = {
chart.destroy()
this.renderChart(this.chartData, this.options)
}
} else {
this.renderChart(this.chartData, this.options)
}
}
}
Expand Down

0 comments on commit e8cbef7

Please sign in to comment.