mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
fix: execution log crashes for logs with no uuid (#13998)
* Fix execution log when no execution id * Use single quotes * Pretty
This commit is contained in:
@@ -100,7 +100,7 @@ function ExecutionLog({ addDangerToast, isReportEnabled }: ExecutionLogProps) {
|
||||
row: {
|
||||
original: { uuid: executionId },
|
||||
},
|
||||
}: any) => executionId.slice(0, 6),
|
||||
}: any) => (executionId ? executionId.slice(0, 6) : 'none'),
|
||||
accessor: 'uuid',
|
||||
Header: t('Execution ID'),
|
||||
size: 'xs',
|
||||
|
||||
Reference in New Issue
Block a user