Lighthouse-io / react-visjs-timeline

React component for the vis.js timeline module
MIT License
210 stars 91 forks source link

Fix change detection #147

Open Conan1985 opened 1 year ago

Conan1985 commented 1 year ago

Overview

The nextProps could contain new objects but actually the exact value of old ones. Compare their values instead to make sure shouldComponentUpdate only triggered with actual change.

Updates

Use JSON.stringify() to compare the props in shouldComponentUpdate