[Core] [DataSet] Support synchronization of historical error information

This commit is contained in:
qianmoQ 2024-02-27 16:06:58 +08:00
parent 7dc09c59f6
commit e58f5294e1

View File

@ -13,7 +13,15 @@
</template>
<template #state="{row}">
<Tag :color="getColor(row.state)">
<Poptip v-if="row.state === 'FAILURE'"
:content="row.message"
transfer
placement="bottom">
{{ getStateText(row.state) }}
</Poptip>
<span v-else>
{{ getStateText(row.state) }}
</span>
</Tag>
</template>
</Table>