Skip to content

Commit

Permalink
feat: fix check report
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennisic committed Nov 27, 2023
1 parent 7fce9bf commit 3fe2e25
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<a-collapse v-else v-model:activeKey="activeKey" v-for="val in item.reportFileData" :key="val.name">
<a-collapse-panel v-if="val.issue > 0" :key="val.name + item.id" :header="val.name" :showArrow="false">
<a-table :class="theme.themeValue === 'dark' ? 'dark-table-css' : ''" class="noHeader-table-css"
v-if="(projectType === '2' || projectType==='1') && (item.checkTool === 'ESLint' || item.checkTool === 'Move Prove') && val.message" :dataSource="val.message"
v-if="(projectType === '2' || projectType==='1') && (item.checkTool === 'ESLint') && val.message" :dataSource="val.message"
:columns="ESLintColumns" :pagination="false" :showHeader="false">
<template #bodyCell="{ column, record, index }">
<template v-if="column.dataIndex === 'columnLine'">
Expand Down

0 comments on commit 3fe2e25

Please sign in to comment.