Skip to content

Commit

Permalink
Merge pull request #125
Browse files Browse the repository at this point in the history
fix(httprunner): row.attachment rather than row.meta_data.attachment
  • Loading branch information
lihuacai168 authored Sep 23, 2023
2 parents 929bf54 + 477c172 commit 12a9c3d
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions web/src/pages/reports/DebugReport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,7 @@
label="期望值"
:formatter="expectValueFormatter"
></el-table-column>
<el-table-column
prop="validate_msg"
label="验证信息"
></el-table-column>
<el-table-column prop="validate_msg" label="验证信息"></el-table-column>
<el-table-column
prop="desc"
label="描述"
Expand Down Expand Up @@ -188,7 +185,7 @@
</el-tab-pane>

<el-tab-pane label="Exception">
<template v-if="props.row.meta_data.attachment !== ''">
<template v-if="props.row.attachment && props.row.attachment !== ''">
<pre class="code-block" v-html="props.row.attachment"></pre>
</template>
<template v-else>
Expand Down

0 comments on commit 12a9c3d

Please sign in to comment.