Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
import type { ContainerExecutionStatus } from "@/api/types.gen";
import { ComponentDetailsDialog } from "@/components/shared/Dialogs";
import { ComponentFavoriteToggle } from "@/components/shared/FavoriteComponentToggle";
import { RemoteTroubleshootButton } from "@/components/shared/RemoteTroubleshootAction/RemoteTroubleshootButton";
import { StatusIcon } from "@/components/shared/Status";
import { TaskDetails } from "@/components/shared/TaskDetails";
import TaskActions from "@/components/shared/TaskDetails/Actions";
Expand Down Expand Up @@ -40,6 +41,7 @@ const TaskOverview = ({ taskNode }: TaskOverviewProps) => {

const executionData = useExecutionDataOptional();
const details = executionData?.details;
const runId = executionData?.runId;

const { readOnly, status } = state;
const disabled = !!status;
Expand Down Expand Up @@ -90,6 +92,15 @@ const TaskOverview = ({ taskNode }: TaskOverviewProps) => {
/>
)}

{runId && (
<RemoteTroubleshootButton
runId={runId}
executionId={executionId}
taskName={taskId}
status={status}
/>
)}

<div className="overflow-y-auto pb-4 h-full w-full">
<Tabs defaultValue="io" className="h-full">
<TabsList className="mb-2">
Expand Down
Loading