Commit 394998df authored by Alexander Turinske's avatar Alexander Turinske

Fix zero count of vulnerability severity count

- in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/58522,
  `this.scope` was switched out for `this.dashboardType`,
  but there was missed instance
parent be043c3e
......@@ -51,7 +51,7 @@ export default {
};
},
update(data) {
return data[this.scope]?.vulnerabilitySeveritiesCount || {};
return data[this.dashboardType]?.vulnerabilitySeveritiesCount || {};
},
result() {
this.queryError = false;
......
---
title: Fix zero count of vulnerability severity count
merge_request: 59680
author:
type: fixed
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment