Skip to content

Commit

Permalink
Pass sales order through to sub-builds table
Browse files Browse the repository at this point in the history
  • Loading branch information
SchrodingersGat committed Aug 19, 2024
1 parent 48ee876 commit 89789d0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/frontend/src/pages/build/BuildDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,10 @@ export default function BuildDetail() {
label: t`Child Build Orders`,
icon: <IconSitemap />,
content: build.pk ? (
<BuildOrderTable parentBuildId={build.pk} />
<BuildOrderTable
parentBuildId={build.pk}
salesOrderId={build.sales_order}
/>
) : (
<Skeleton />
)
Expand Down

0 comments on commit 89789d0

Please sign in to comment.