We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa6cfce commit 6e72867Copy full SHA for 6e72867
app/charts/EventChart.tsx
@@ -31,7 +31,7 @@ const EventChart: React.FC<EventChartProps> = React.memo(props => {
31
const timeArr = timeList.map((el: any) => moment(el).format('kk:mm:ss'));
32
const reverseTimeArr = timeArr.reverse()
33
const hashedColour = colourGenerator(metric);
34
- const newMetricName = metric.replace("kubernetes-cadvisor/docker-desktop/", ""); // this will get rid of the long path
+ const newMetricName = metric.replace("kubernetes-cadvisor/docker-desktop/", ""); // this will get rid of the long path
35
const re = /_/g;
36
let plotlyData: {
37
name: any;
0 commit comments