Skip to content

Commit

Permalink
Small typo
Browse files Browse the repository at this point in the history
  • Loading branch information
josephnobes-stfc committed Feb 6, 2024
1 parent ee27e81 commit 0e32abe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Loki.js
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ function LOKICPUInfo({cpuInfo, show_cpu_times=true, show_cpu_times_graph=false})
pie showData
title Times
` + Object.keys(cpuInfo.times).map((timename) => {
if (cpuInfo.times[timename] != 0) {
if (cpuInfo.times[timename] !== 0) {
return (`
"${timename}" : ${cpuInfo.times[timename]}
`)
Expand Down

0 comments on commit 0e32abe

Please sign in to comment.