diff --git a/packages/ui/src/views/agentexecutions/ExecutionDetails.jsx b/packages/ui/src/views/agentexecutions/ExecutionDetails.jsx index 90fbc18a0..c89a1130f 100644 --- a/packages/ui/src/views/agentexecutions/ExecutionDetails.jsx +++ b/packages/ui/src/views/agentexecutions/ExecutionDetails.jsx @@ -725,7 +725,8 @@ export const ExecutionDetails = ({ open, isPublic, execution, metadata, onClose, flex: '1 1 35%', padding: 2, borderRight: 1, - borderColor: 'divider' + borderColor: 'divider', + overflow: 'auto' }} > { return ( <> - {!isLoading ? ( + {isLoading ? ( + + + + ) : ( <> - {!execution || getExecutionByIdPublicApi.error ? ( + {getExecutionByIdPublicApi.error ? ( { /> )} - ) : null} + )} ) }