We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 360a1dc commit 0cf0cecCopy full SHA for 0cf0cec
src/visualizations/VisTimeline.vue
@@ -108,7 +108,7 @@ export default {
108
events = _.filter(events, e => e.duration > 1);
109
console.log(`Filtered ${bucket.events.length - events.length} events`);
110
}
111
- events = _.sortBy(events, e => e.timestamp);
+ events.sort((a, b) => a.timestamp.valueOf() - b.timestamp.valueOf());
112
_.each(events, e => {
113
data.push([
114
bucket.id,
0 commit comments