Skip to content

Commit

Permalink
1.2.0-beta release.
Browse files Browse the repository at this point in the history
  • Loading branch information
k1nd0ne committed Apr 23, 2023
2 parents fa875a1 + 923ef00 commit d3dca47
Show file tree
Hide file tree
Showing 50 changed files with 784 additions and 2,029 deletions.
21 changes: 11 additions & 10 deletions VolWeb/voltools.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,14 +308,15 @@ def build_timeline(data):
except:
raise GraphException('Could not generate timeline graph')
for i in data:
try:
actual_date = str(i["Created Date"])
if actual_date != saved_date:
timeline.append([saved_date, nb_event])
saved_date = actual_date
nb_event = 1
else:
nb_event += 1
except:
raise GraphException('Could not generate timeline graph')
if i["Plugin"] != "MFTScan":
try:
actual_date = str(i["Created Date"])
if actual_date != saved_date:
timeline.append([saved_date, nb_event])
saved_date = actual_date
nb_event = 1
else:
nb_event += 1
except:
raise GraphException('Could not generate timeline graph')
return timeline
2 changes: 1 addition & 1 deletion dashboard/static/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
font-size: 12px;
}

.p_info {
.p_info, td, tr {
font-size: 13px;
}

Expand Down
Loading

0 comments on commit d3dca47

Please sign in to comment.