Skip to content

Commit

Permalink
Adjust value types of columns
Browse files Browse the repository at this point in the history
Signed-off-by: Till Englert <till.englert96@gmail.com>
  • Loading branch information
tillenglert committed Dec 4, 2024
1 parent 951c9e1 commit b5dd744
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -259,13 +259,13 @@ $(function() {
return '<code>'+script+'</code>';
}
},
{ title: co2EmissionsTitle, data: 'co2e', render: make_co2e },
{ title: energyConsumptionTitle, data: 'energy', render: make_energy },
{ title: 'Time', data: 'time', render: make_time },
{ title: 'Number of cores', data: 'cpus' },
{ title: 'Power draw of a computing core', data: 'powerdrawCPU' },
{ title: 'Core usage factor', data: 'cpuUsage', render: make_core_usage_factor },
{ title: 'Memory', data: 'memory', render: make_memory },
{ title: co2EmissionsTitle, data: 'co2e', type: 'num', render: make_co2e },
{ title: energyConsumptionTitle, data: 'energy', type: 'num', render: make_energy },
{ title: 'Time', data: 'time', type: 'num', render: make_time },
{ title: 'Number of cores', data: 'cpus', type: 'num' },
{ title: 'Power draw of a computing core', data: 'powerdrawCPU', type: 'num'},
{ title: 'Core usage factor', data: 'cpuUsage', type: 'num', render: make_core_usage_factor },
{ title: 'Memory', data: 'memory', type: 'num', render: make_memory },
{ title: 'CPU model', data: 'cpu_model' },
],
"deferRender": true,
Expand Down

0 comments on commit b5dd744

Please sign in to comment.