aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2025-03-28 19:12:48 +0100
committerTaras Madan <tarasmadan@google.com>2025-03-28 18:53:26 +0000
commitcf25e2c2a28647d60ca5aa9f701d86de5207bc26 (patch)
tree1b76d799cdae7ad83d1c9dab021347c6121cd49a /dashboard/app
parent32665a357cbde5e6bdc7e92c325127d9d5a9b463 (diff)
dashboard/app: fix histogram numbers
Some time ago we added the per-manager statistics. Histogram was broken since that moment. Closes #5867.
Diffstat (limited to 'dashboard/app')
-rw-r--r--dashboard/app/entities_spanner.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/app/entities_spanner.go b/dashboard/app/entities_spanner.go
index c550ef92e..df1bfeed7 100644
--- a/dashboard/app/entities_spanner.go
+++ b/dashboard/app/entities_spanner.go
@@ -42,7 +42,7 @@ select
cast(sum(covered) as INTEGER) as covered
from merge_history join files
on merge_history.session = files.session
-where namespace=$1 and duration>=$2 and duration<=$3
+where namespace=$1 and duration>=$2 and duration<=$3 and manager='*'
group by dateto, duration`,
Params: map[string]interface{}{
"p1": ns,