feat: 展示通知 outbox 下次重试时间
- settings: 通知 outbox 表增加 nextAttemptAt 展示,便于观察重试器调度
This commit is contained in:
@@ -454,6 +454,11 @@ function applyAgentConfig(config: AgentConfigSummary) {
|
||||
{{ row.attemptCount }}
|
||||
</template>
|
||||
</ElTableColumn>
|
||||
<ElTableColumn label="下次重试" min-width="150">
|
||||
<template #default="{ row }">
|
||||
{{ formatCheckedAt(row.nextAttemptAt || '') }}
|
||||
</template>
|
||||
</ElTableColumn>
|
||||
<ElTableColumn label="错误摘要" min-width="240">
|
||||
<template #default="{ row }">
|
||||
<span class="outbox-error">{{ row.lastError || '-' }}</span>
|
||||
|
||||
Reference in New Issue
Block a user