File tree Expand file tree Collapse file tree
apps/sim/app/workspace/[workspaceId]/logs/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11export { Dashboard } from './dashboard'
2+ export type { LogDetailsTab } from './log-details'
23export { LogDetails , LogDetailsContent , WorkflowOutputSection } from './log-details'
34export { ExecutionSnapshot } from './log-details/components/execution-snapshot'
45export { FileCards } from './log-details/components/file-download'
Original file line number Diff line number Diff line change 1+ export type { LogDetailsTab } from './log-details'
12export { LogDetails , LogDetailsContent , WorkflowOutputSection } from './log-details'
Original file line number Diff line number Diff line change @@ -269,10 +269,7 @@ interface LogDetailsContentProps {
269269 * embedded directly inside the Mothership resource panel — keep the two in
270270 * sync by editing this component, not by re-implementing it elsewhere.
271271 */
272- export const LogDetailsContent = memo ( function LogDetailsContent ( {
273- log,
274- onActiveTabChange,
275- } : LogDetailsContentProps ) {
272+ export function LogDetailsContent ( { log, onActiveTabChange } : LogDetailsContentProps ) {
276273 const [ isExecutionSnapshotOpen , setIsExecutionSnapshotOpen ] = useState ( false )
277274 const [ activeTab , setActiveTab ] = useState < LogDetailsTab > ( 'overview' )
278275 const [ prevLogId , setPrevLogId ] = useState ( log . id )
@@ -619,7 +616,7 @@ export const LogDetailsContent = memo(function LogDetailsContent({
619616 ) }
620617 </ >
621618 )
622- } )
619+ }
623620
624621interface LogDetailsProps {
625622 /** The log to display details for */
You can’t perform that action at this time.
0 commit comments