Skip to content

Commit

Permalink
feat: fix aptos
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennisic committed Oct 11, 2023
1 parent f546f12 commit 84fdb97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/projects/projectsWorkflows/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<!-- frameType == '1' && queryJson.type === '1',也就是evm 的 check 走统计表格,其它情况走原来的流水线 -->
<CheckResult v-if="workflowsDetailsData.frameType == 1 && queryJson.type === '1'" :currentName="currentName"></CheckResult>
<div v-else>
<CheckReport v-show="queryJson.type === '1'" :projectType="queryJson.projectType"
<CheckReport v-if="queryJson.type === '1' && checkReportData.length" :projectType="queryJson.projectType"
:checkReportData="checkReportData" :checkStatus="workflowsDetailsData.checkStatus"></CheckReport>
<GasUsageReport :gasUsageReportData="gasUsageReportData"
v-show="queryJson.type === '1' && workflowsDetailsData.frameType === 1"></GasUsageReport>
Expand Down

0 comments on commit 84fdb97

Please sign in to comment.