diff --git a/cycledash/static/js/examine/components/PileupViewer.js b/cycledash/static/js/examine/components/PileupViewer.js index 4d14fda..1891cc7 100644 --- a/cycledash/static/js/examine/components/PileupViewer.js +++ b/cycledash/static/js/examine/components/PileupViewer.js @@ -144,7 +144,11 @@ var PileupViewer = React.createClass({ }, update: function() { if (this.props.isOpen && this.props.selectedRecord) { - this.lazilyCreateDalliance(); + if (!this.browser) { + this.lazilyCreateDalliance(); + } else { + this.panToSelection(); + } } }, rangeForRecord: function(record) {