Merge pull request #3606 from bluewave-labs/develop

develop -> master
This commit is contained in:
Alexander Holliday
2026-04-29 12:11:29 -07:00
committed by GitHub
4 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "client",
"version": "3.7.0",
"version": "3.7.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "client",
"version": "3.7.0",
"version": "3.7.1",
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "client",
"private": true,
"version": "3.7.0",
"version": "3.7.1",
"type": "module",
"scripts": {
"dev": "vite",
@@ -31,10 +31,10 @@ export const ThemedHeatmap = ({ checks, containerSx, cellSx }: Props) => {
const { t } = useTranslation();
const uiTimezone = useSelector((state: RootState) => state.ui.timezone);
const source = checks.slice(0, CELLS).reverse();
const source = checks.slice(-CELLS);
const padded: (CheckSnapshot | null)[] = [
...Array.from({ length: Math.max(0, CELLS - source.length) }, () => null),
...source,
...Array.from({ length: Math.max(0, CELLS - source.length) }, () => null),
];
return (
@@ -37,10 +37,10 @@ export const ThemedHistogram = ({
const uiTimezone = useSelector((state: RootState) => state.ui.timezone);
const { padded, max, avg, peak } = useMemo(() => {
const source = checks.slice(0, CELLS).reverse();
const source = checks.slice(-CELLS);
const out: (CheckSnapshot | null)[] = [
...Array.from({ length: Math.max(0, CELLS - source.length) }, () => null),
...source,
...Array.from({ length: Math.max(0, CELLS - source.length) }, () => null),
];
const valid = out.filter((c): c is CheckSnapshot => c !== null && c.responseTime > 0);
const maxRt = valid.length ? Math.max(...valid.map((c) => c.responseTime)) : 1;