fix/annoying-closing-of-trello-card (#16)

* Fix unexpected closing of trello card when clicking on bubble

* Have latest change at the top in changelog
This commit is contained in:
Manuel Bouza
2019-04-24 15:21:36 +02:00
committed by GitHub
parent cd9f94423c
commit 25773cc661
4 changed files with 77 additions and 46 deletions

View File

@@ -12,11 +12,11 @@ const Bubble = ({ bookedHours }) => (
)
Bubble.propTypes = {
bookedHours: PropTypes.number
bookedHours: PropTypes.number,
}
Bubble.defaultProps = {
bookedHours: 0
bookedHours: 0,
}
export default Bubble