diff --git a/frontend/src/business/components/track/plan/view/comonents/functional/FunctionalTestCaseEdit.vue b/frontend/src/business/components/track/plan/view/comonents/functional/FunctionalTestCaseEdit.vue index da8facdcb8..b218fdd4ca 100644 --- a/frontend/src/business/components/track/plan/view/comonents/functional/FunctionalTestCaseEdit.vue +++ b/frontend/src/business/components/track/plan/view/comonents/functional/FunctionalTestCaseEdit.vue @@ -90,26 +90,26 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - +
{{ $t('test_track.case.steps') }}: @@ -641,7 +641,7 @@ export default { this.$post('/test/plan/edit/status/' + planId); }, stepResultChange() { - if (this.testCase.method === 'manual') { + if (this.testCase.method === 'manual' || !this.testCase.method) { this.isFailure = this.testCase.steptResults.filter(s => { return s.executeResult === 'Failure' || s.executeResult === 'Blocking'; }).length > 0;