diff options
| author | Taras Madan <tarasmadan@google.com> | 2025-03-28 19:12:48 +0100 |
|---|---|---|
| committer | Taras Madan <tarasmadan@google.com> | 2025-03-28 18:53:26 +0000 |
| commit | cf25e2c2a28647d60ca5aa9f701d86de5207bc26 (patch) | |
| tree | 1b76d799cdae7ad83d1c9dab021347c6121cd49a | |
| parent | 32665a357cbde5e6bdc7e92c325127d9d5a9b463 (diff) | |
dashboard/app: fix histogram numbers
Some time ago we added the per-manager statistics.
Histogram was broken since that moment.
Closes #5867.
| -rw-r--r-- | dashboard/app/entities_spanner.go | 2 |
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, |
