Do not add variables into filenames as they don't overwrite then
This commit is contained in:
parent
d29302ca84
commit
b2935c6eba
1 changed files with 2 additions and 2 deletions
|
@ -571,12 +571,12 @@ function createGraphs(allFeatures: ChangeSetData[], appliedFilterDescription: st
|
|||
})
|
||||
const total = new Set(allFeatures.map(f => f.properties.user)).size
|
||||
createGraph(
|
||||
`Contributors per day${appliedFilterDescription} (${total} total contributors)`,
|
||||
`Contributors per day${appliedFilterDescription}`,
|
||||
contributorCountPerDay
|
||||
.asHist(true)
|
||||
.keyToDate(true)
|
||||
.asBar({
|
||||
name: "Unique contributors per day"
|
||||
name: `Unique contributors per day (${total} total)`
|
||||
}),
|
||||
newContributorsPerDay
|
||||
.asHist(true)
|
||||
|
|
Loading…
Reference in a new issue