mirror of
https://github.com/jumpserver/lina.git
synced 2026-01-30 05:42:19 +00:00
Fixed: Remove isShort
This commit is contained in:
@@ -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')
|
||||
}
|
||||
|
||||
@@ -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')
|
||||
}
|
||||
|
||||
@@ -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
|
||||
}
|
||||
},
|
||||
|
||||
@@ -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')
|
||||
}
|
||||
|
||||
@@ -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')
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user