Skip to content
This repository was archived by the owner on Jun 13, 2024. It is now read-only.

Commit 570e2c6

Browse files
committed
fix: New Job crash
1 parent 6459cdf commit 570e2c6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/containers/inspector/JobInspector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const JobInspector = (
1313
) => {
1414
const navigateTo = useStoreActions((actions) => actions.navigateTo);
1515
const executor = props.values.executor;
16-
const executorName = typeof executor === 'string' ? executor : executor.name;
16+
const executorName = typeof executor === 'string' ? executor : executor?.name;
1717

1818
return (
1919
<div>

0 commit comments

Comments
 (0)