@@ -288,11 +288,11 @@ export const GraphSeriesCard = ({id, identifier}: Props) => {
288288 name : t ( 'html.label.ping' ) , icon : faSignal ,
289289 color : 'var(--color-data-performance-ping)' ,
290290 permission : 'page.server.performance.graphs.ping' ,
291- data : pingSeries ? [ ] : undefined
291+ data : pingSeries ? [ { } ] : undefined
292292 } , {
293293 show : false ,
294294 id : PerformanceGraphId . PING_MIN ,
295- name : t ( 'html.label.bestPing' ) , icon : faSignal , color : ' ping' ,
295+ name : t ( 'html.label.bestPing' ) , icon : faSignal , color : "var(--color-graphs- ping-min)" ,
296296 permission : 'page.server.performance.graphs.ping' ,
297297 data : pingSeries ?. min_ping_series ,
298298 options : {
@@ -303,7 +303,7 @@ export const GraphSeriesCard = ({id, identifier}: Props) => {
303303 } , {
304304 show : false ,
305305 id : PerformanceGraphId . PING_AVG ,
306- name : t ( 'html.label.averagePing' ) , icon : faSignal , color : ' ping' ,
306+ name : t ( 'html.label.averagePing' ) , icon : faSignal , color : "var(--color-graphs- ping-avg)" ,
307307 permission : 'page.server.performance.graphs.ping' ,
308308 data : pingSeries ?. avg_ping_series ,
309309 options : {
@@ -314,7 +314,7 @@ export const GraphSeriesCard = ({id, identifier}: Props) => {
314314 } , {
315315 show : false ,
316316 id : PerformanceGraphId . PING_MAX ,
317- name : t ( 'html.label.worstPing' ) , icon : faSignal , color : ' ping' ,
317+ name : t ( 'html.label.worstPing' ) , icon : faSignal , color : "var(--color-graphs- ping-max)" ,
318318 permission : 'page.server.performance.graphs.ping' ,
319319 data : pingSeries ?. max_ping_series ,
320320 options : {
0 commit comments