mirror of https://github.com/MISP/misp-dashboard
fix: was setting time span of elements the day before instead of the
real one. update: set window size of timeline to cover the selected dates.pull/29/head
parent
a47ec1da52
commit
eec59473d6
|
@ -192,13 +192,13 @@ class Trendings_helper:
|
|||
to_ret = []
|
||||
ONEDAY = 60*60*24
|
||||
for item, timestamps in dico_items.items():
|
||||
obj = {'name': item, 'start': timestamps[0]-ONEDAY, 'end': timestamps[0]}
|
||||
obj = {'name': item, 'start': timestamps[0], 'end': timestamps[0]+ONEDAY}
|
||||
for t in timestamps:
|
||||
if t-obj['end'] > ONEDAY: #new entry
|
||||
to_ret.append(copy.deepcopy(obj))
|
||||
obj['start'] = t-ONEDAY
|
||||
obj['end'] = t
|
||||
obj['start'] = t
|
||||
obj['end'] = t+ONEDAY
|
||||
else: # contrinue entry
|
||||
obj['end'] = t
|
||||
obj['end'] = t+ONEDAY
|
||||
to_ret.append(obj)
|
||||
return to_ret
|
||||
|
|
|
@ -447,6 +447,7 @@ function updateTimeline() {
|
|||
}
|
||||
timeline.setGroups(groups);
|
||||
timeline.setItems(items);
|
||||
timeline.setWindow(dateStart, dateEnd);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue