mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
remove logging
This commit is contained in:
@@ -86,9 +86,9 @@ export function calculateStats(options: CalculateStatsOptions): ColumnStats {
|
||||
// This lets the concrete implementations assume at least one row
|
||||
if (!table.rows || table.rows.length < 1) {
|
||||
const stats = {} as ColumnStats;
|
||||
queue.forEach(stat => {
|
||||
for (const stat of queue) {
|
||||
stats[stat.id] = stat.emptyInputResult !== null ? stat.emptyInputResult : null;
|
||||
});
|
||||
}
|
||||
return stats;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user