fix(接口测试): 断言状态列筛选双重提示修复

This commit is contained in:
baiqi 2024-11-12 15:48:39 +08:00 committed by Craftsman
parent 57b6d11793
commit c8b08735a5
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@
</MsTag> </MsTag>
</template> </template>
<template #[FilterSlotNameEnum.API_TEST_API_RESPONSE_ASSERTION_STATUS]="{ filterContent }"> <template #[FilterSlotNameEnum.API_TEST_API_RESPONSE_ASSERTION_STATUS]="{ filterContent }">
<MsTag :type="filterContent.value === true ? 'success' : 'danger'" theme="light"> <MsTag :type="filterContent.value === true ? 'success' : 'danger'" theme="light" tooltip-disabled>
{{ filterContent.value === true ? t('common.success') : t('common.fail') }} {{ filterContent.value === true ? t('common.success') : t('common.fail') }}
</MsTag> </MsTag>
</template> </template>