Skip to content
Merged
Show file tree
Hide file tree
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 @@ -127,8 +127,6 @@ interface WorkflowStep {
isActive?: boolean;
disabled?: boolean;
disabledReason?: string;
inputCount?: number;
outputCount?: number;
onClick?: () => void;
}

Expand Down Expand Up @@ -346,7 +344,7 @@ const DefaultShell = ({ initialCollapsed = false }: { initialCollapsed?: boolean
<Button
variant="outline"
size="sm"
onClick={() => setActiveStepId(htsWorkflowSteps[activeStepIndex - 1].id)}
onClick={() => setActiveStepId(steps[activeStepIndex - 1].id)}
className="gap-1"
>
Back
Expand Down Expand Up @@ -715,17 +713,13 @@ const WorkflowInteractionShell = () => {
icon: LayoutGrid,
isActive: activeStepId === "step-a",
onClick: () => setActiveStepId("step-a"),
inputCount: 1000,
outputCount: 800,
},
{
id: "step-b",
label: "Step Beta",
icon: Filter,
isActive: activeStepId === "step-b",
onClick: () => setActiveStepId("step-b"),
inputCount: 800,
outputCount: 200,
},
{ id: "step-c", label: "Disabled", icon: Search, disabled: true, disabledReason: "Requires upstream data" },
];
Expand Down
2 changes: 0 additions & 2 deletions src/components/composed/DataAppShell/DataAppShell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,6 @@ function SidebarBody({
<div
className={cn(
"shrink-0 flex",
// Expanded: full-width header border. Collapsed: no full-width border —
// a short centered divider (below) aligns under the icon column instead.
compact ? "justify-center pt-1 pb-2" : "px-3 py-2.5 border-b border-sidebar-border"
)}
>
Expand Down
Loading