diff --git a/frontend/src/business/components/track/case/components/TestCaseList.vue b/frontend/src/business/components/track/case/components/TestCaseList.vue
index f7b5d998e2..ed5e43555c 100644
--- a/frontend/src/business/components/track/case/components/TestCaseList.vue
+++ b/frontend/src/business/components/track/case/components/TestCaseList.vue
@@ -8,7 +8,7 @@
:tip="$t('commons.search_by_name_or_id')"
:create-tip="$t('test_track.case.create')" @create="testCaseCreate">
-
+
{
@@ -366,6 +369,10 @@ export default {
this.selectRows.clear();
this.$emit('refresh');
},
+ showAll() {
+ this.condition = {components: TEST_CASE_CONFIGS};
+ this.getData();
+ },
showDetail(row, event, column) {
this.$emit('testCaseDetail', row);
},