File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
ui/packages/shared/profile/src
MetricsGraph/UtilizationMetrics Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -372,7 +372,7 @@ const AreaChart = ({
372372 < motion . div
373373 className = "w-full relative"
374374 key = "area-chart-graph-loaded"
375- initial = { { display : 'none' , opacity : 0 } }
375+ initial = { false }
376376 animate = { { display : 'block' , opacity : 1 } }
377377 transition = { { duration : 0.5 } }
378378 >
Original file line number Diff line number Diff line change @@ -396,7 +396,7 @@ const UtilizationMetrics = ({
396396 < motion . div
397397 className = "w-full relative"
398398 key = "utilization-metrics-graph-loaded"
399- initial = { { display : 'none' , opacity : 0 } }
399+ initial = { false }
400400 animate = { { display : 'block' , opacity : 1 } }
401401 transition = { { duration : 0.5 } }
402402 >
Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ export function MetricsGraphSection({
213213 to = { querySelection . to }
214214 utilizationMetricsLoading = { utilizationMetricsLoading }
215215 selectedSeries = { undefined }
216- onSeriesClick = { ( name , seriesIndex ) => {
216+ onSeriesClick = { ( _ , seriesIndex ) => {
217217 // For throughput metrics, just pass the series index
218218 if ( onUtilizationSeriesSelect != null ) {
219219 let name = 'gpu_pcie_throughput_transmit_bytes' ;
You can’t perform that action at this time.
0 commit comments