Skip to content

Commit

Permalink
bug: 修复扫描报告详情页无法进入 TencentBlueKing#914 (TencentBlueKing#915)
Browse files Browse the repository at this point in the history
  • Loading branch information
cnlkl authored Jul 11, 2023
1 parent 936e222 commit 6e74ac0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<bk-table-column label="制品名称" show-overflow-tooltip>
<template #default="{ row }">
<span v-if="row.groupId" class="mr5 repo-tag" :data-name="row.groupId"></span>
<span class="hover-btn" :class="{ 'disabled': row.status !== 'SUCCESS' }" @click="showArtiReport(row)">{{ row.name }}</span>
<span class="hover-btn" :class="{ 'disabled': !['UN_QUALITY', 'QUALITY_PASS', 'QUALITY_UNPASS'].includes(row.status) }" @click="showArtiReport(row)">{{ row.name }}</span>
</template>
</bk-table-column>
<bk-table-column label="制品版本/存储路径" show-overflow-tooltip>
Expand Down

0 comments on commit 6e74ac0

Please sign in to comment.