diff --git a/frontend/src/business/components/api/automation/report/components/MetricChart.vue b/frontend/src/business/components/api/automation/report/components/MetricChart.vue
index 77cbdc80b3..e269795117 100644
--- a/frontend/src/business/components/api/automation/report/components/MetricChart.vue
+++ b/frontend/src/business/components/api/automation/report/components/MetricChart.vue
@@ -81,8 +81,8 @@
{{ content.scenarioErrorReport ? content.scenarioErrorReport : 0 }}
{{ $t('error_report_library.option.name') }}
-
-
+
+
{{ content.scenarioUnExecute ? content.scenarioUnExecute : 0 }}
{{ $t('api_test.home_page.detail_card.unexecute') }}
@@ -111,8 +111,8 @@
{{ content.scenarioStepErrorReport ? content.scenarioStepErrorReport : 0 }}
{{ $t('error_report_library.option.name') }}
-
-
+
+
{{
content.scenarioStepUnExecuteReport ? content.scenarioStepUnExecuteReport : 0
}}
@@ -275,6 +275,10 @@ export default {
isUi() {
return this.report.reportType && this.report.reportType.startsWith("UI");
},
+ showUnExecuteReport() {
+ return this.content.scenarioStepUnExecuteReport && this.content.scenarioStepUnExecuteReport > 0
+ && this.content.scenarioUnExecute && this.content.scenarioUnExecute > 0;
+ }
},
}