Skip to content

Commit

Permalink
fix(CQ-4341758): intermittently columnview does not allow selection (#…
Browse files Browse the repository at this point in the history
…207)

Co-authored-by: Pareesh Gupta <pareeshgupta@Pareeshs-MacBook-Pro.local>
  • Loading branch information
Pareesh and Pareesh Gupta committed Mar 7, 2022
1 parent aaff01e commit e205367
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coral-component-columnview/src/scripts/ColumnView.js
Expand Up @@ -38,7 +38,7 @@ const scrollTo = (element, to, duration, scrollCallback) => {
scrollCallback();
}
} else {
scrollTo(element, to, duration - 10);
scrollTo(element, to, duration - 10, scrollCallback);
}
}, 10);
};
Expand Down

0 comments on commit e205367

Please sign in to comment.