Dan Blackadder
Results
1
comments of
Dan Blackadder
`functions/transformChatData.js` line 354 replace: ``` const minDate = new Date(Math.min.apply(null, this.dates)); const maxDate = new Date(Math.max.apply(null, this.dates)); ``` with: ``` const sortedDates = this.dates.sort(); const minDate = new Date(sortedDates[0]); const...