Skip to content

Commit

Permalink
(BIDS-2591) Improve return value for dashboard effectiveness (#2631)
Browse files Browse the repository at this point in the history
* (BIDS-2591) Improve return value for dashboard effectiveness

* (BIDS-2591) Changes based on code review
  • Loading branch information
D13ce authored Oct 24, 2023
1 parent ecfeac2 commit 206c355
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion handlers/dashboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,8 @@ func DashboardDataEffectiveness(w http.ResponseWriter, r *http.Request) {
}

if len(activeValidators) == 0 {
http.Error(w, "Invalid query", http.StatusBadRequest)
// valid 200 response with empty data
w.Write([]byte(`{}`))
return
}

Expand Down
3 changes: 3 additions & 0 deletions static/js/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -976,6 +976,9 @@ $(document).ready(function () {
method: "GET",
}).then((res) => {
res.json().then((data) => {
if (Object.keys(data).length === 0) {
return
}
let sum = 0.0
for (let eff of data) {
sum += eff
Expand Down

0 comments on commit 206c355

Please sign in to comment.