For now, avoid rendering the "campaign created" events on the timeline to make things more consolidated. Fixes #999

pull/986/head^2
Jordan Wright 2018-03-22 22:16:59 -05:00
parent 2ff0c3d95c
commit 9ba3f04d1e
No known key found for this signature in database
GPG Key ID: 138D5AD2331B3C11
2 changed files with 4 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -755,6 +755,9 @@ function load() {
}); });
// Setup the graphs // Setup the graphs
$.each(campaign.timeline, function (i, event) { $.each(campaign.timeline, function (i, event) {
if (event.message == "Campaign Created") {
return true
}
var event_date = moment.utc(event.time).local() var event_date = moment.utc(event.time).local()
timeline_series_data.push({ timeline_series_data.push({
email: event.email, email: event.email,