Highly ambitious ATProtocol AppView service and sdks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix sparkline count to total records across time 24h period

+1 -1
+1 -1
frontend/src/shared/fragments/ActivitySparkline.tsx
··· 94 94 95 95 {/* Activity label */} 96 96 <div className="ml-2 text-xs text-zinc-500"> 97 - {dataPoints[dataPoints.length - 1]} records 97 + {dataPoints.reduce((sum, count) => sum + count, 0)} records 98 98 </div> 99 99 </div> 100 100 );