fix(工作台): 修复测试计划数量卡片已归档悬浮tooltip文案

This commit is contained in:
xinxin.wu 2024-12-20 14:08:55 +08:00 committed by Craftsman
parent a4412107ec
commit 7da8c68aaa
1 changed files with 5 additions and 1 deletions

View File

@ -40,7 +40,11 @@
class="mr-[8px] text-center text-[var(--color-text-brand)]" class="mr-[8px] text-center text-[var(--color-text-brand)]"
@click="goNavigation(passItem, index, true)" @click="goNavigation(passItem, index, true)"
> >
{{ hasPermission ? addCommasToNumber(passItem.archivedPassed || 0) : '-' }} <a-tooltip :content="t('common.archived')" position="top">
<span>
{{ hasPermission ? addCommasToNumber(passItem.archivedPassed || 0) : '-' }}
</span>
</a-tooltip>
</div> </div>
</div> </div>
</template> </template>