diff --git a/frontend/src/business/components/api/report/components/MetricChart.vue b/frontend/src/business/components/api/report/components/MetricChart.vue index baafe76138..e1b59cb06e 100644 --- a/frontend/src/business/components/api/report/components/MetricChart.vue +++ b/frontend/src/business/components/api/report/components/MetricChart.vue @@ -105,7 +105,7 @@ }, fail() { - return (this.content.error / this.content.total).toFixed(0) + "%"; + return (this.content.error / this.content.total * 100).toFixed(0) + "%"; }, assertions() { return this.content.passAssertions + " / " + this.content.totalAssertions;