Nicer arrows on timeline when zoomed in

This commit is contained in:
Lachlan Kermode
2022-03-06 21:43:13 -05:00
parent a84fd55e62
commit c1c3c1a2db
3 changed files with 51 additions and 41 deletions

View File

@@ -70,6 +70,11 @@ class Dashboard extends React.Component {
}
handleSelect(selected, axis) {
if (selected.length <= 0) {
this.props.actions.updateSelected([]);
return;
}
const matchedEvents = [];
const TIMELINE_AXIS = 0;
if (axis === TIMELINE_AXIS) {