Skip to content

Commit

Permalink
fix: 修复xss漏洞 工单查不到数据问题
Browse files Browse the repository at this point in the history
  • Loading branch information
feng626 authored and BaiJiangJie committed Apr 8, 2024
1 parent 1b0adbf commit a968516
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Widgets/MarkDown/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
/>
</el-col>
<el-col v-show="isShow" :span="span">
<VueMarkdown class="result-html" :source="iValue" :show="true" :html="true" />
<VueMarkdown class="result-html" :source="iValue" :show="true" :html="false" />
</el-col>
</el-row>
<VueMarkdown v-else class="source" :source="iValue" :html="true" />
<VueMarkdown v-else class="source" :source="iValue" :html="false" />
</div>
</template>

Expand Down
2 changes: 1 addition & 1 deletion src/views/tickets/BaseTicketList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export default {
]
},
{
value: 'applicant',
value: 'applicant_username_name',
label: this.$t('tickets.Applicant')
},
{
Expand Down

0 comments on commit a968516

Please sign in to comment.