Skip to content

Commit

Permalink
fix: ✨ prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
goranbs committed Jun 11, 2024
1 parent 5df31f1 commit 6027389
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@
}
});
maxCpu = findMax(maxCpuList).toFixed(2).toString();
averageCpu = computeAverage(avgCpulist).toFixed(2).toString();
averageCpu = computeAverage(avgCpulist).toFixed(2).toString();
} else {
data.push(currentCpuData[selectedStep]);
maxCpu = findMax(currentCpuData[selectedStep].y).toFixed(2).toString();
Expand All @@ -353,7 +353,7 @@
}
});
maxMemory = filesize(findMax(maxMemoryList), { round: 2 });
averageMemory = filesize(computeAverage(avgMemoryList), { round: 2 });
averageMemory = filesize(computeAverage(avgMemoryList), { round: 2 });
} else {
data.push(memoryData[selectedStep]);
maxMemory = filesize(findMax(memoryData[selectedStep].y), { round: 2 });
Expand Down

0 comments on commit 6027389

Please sign in to comment.