From e3626c2f9ecfef14ee7a28d0c448bde0938f90b7 Mon Sep 17 00:00:00 2001 From: zhaojisen <1301338853@qq.com> Date: Wed, 16 Apr 2025 14:59:47 +0800 Subject: [PATCH] Fixed: Fix the issue with the automation names in the table. --- src/views/accounts/Automation/BaseExecutionList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/accounts/Automation/BaseExecutionList.vue b/src/views/accounts/Automation/BaseExecutionList.vue index f75bca362..d0d93016b 100644 --- a/src/views/accounts/Automation/BaseExecutionList.vue +++ b/src/views/accounts/Automation/BaseExecutionList.vue @@ -87,8 +87,8 @@ export default { formatter: DetailFormatter, minWidth: '180px', formatterArgs: { - getTitle: ({ row }) => row.snapshot.name, - getDrawerTitle: ({ row }) => row.snapshot.name, + getTitle: ({ row }) => row.automation?.name || row.snapshot.name, + getDrawerTitle: ({ row }) => row.automation?.name || row.snapshot.name, getRoute: ({ row }) => ({ name: this.automationRoute, params: { id: row.automation.id }