Fixed: Remove isShort

This commit is contained in:
zhaojisen
2025-02-28 10:59:38 +08:00
committed by ZhaoJiSen
parent ebebfcd03e
commit f61a535454
5 changed files with 5 additions and 5 deletions

View File

@@ -51,7 +51,7 @@ export default {
name: 'AccountBackupExecutionDetail',
params: { id: row.id }
}),
getTitle: ({ row }) => row['short_id'],
getTitle: ({ row }) => row.automation.slice(0, 8),
drawer: true,
can: this.$hasPerm('accounts.view_backupaccountexecution')
}

View File

@@ -44,7 +44,7 @@ export default {
name: 'AccountChangeSecretExecutionDetail',
params: { id: row.id }
}),
getTitle: ({ row }) => row['short_id'],
getTitle: ({ row }) => row.automation.slice(0, 8),
drawer: true,
can: this.$hasPerm('accounts.view_changesecretexecution')
}

View File

@@ -51,7 +51,7 @@ export default {
name: 'AccountDiscoverExecutionDetail',
params: { id: row.id }
}),
getTitle: ({ row }) => row['short_id'],
getTitle: ({ row }) => row.automation.slice(0, 8),
drawer: true
}
},

View File

@@ -50,7 +50,7 @@ export default {
name: 'AccountPushExecutionDetail',
params: { id: row.id }
}),
getTitle: ({ row }) => row['short_id'],
getTitle: ({ row }) => row.automation.slice(0, 8),
drawer: true,
can: this.$hasPerm('accounts.view_pushaccountexecution')
}

View File

@@ -52,7 +52,7 @@ export default {
name: 'AccountCheckExecutionDetail',
params: { id: row.id }
}),
getTitle: ({ row }) => row['short_id'],
getTitle: ({ row }) => row.automation.slice(0, 8),
drawer: true,
can: this.$hasPerm('accounts.view_checkaccountexecution')
}