diff --git a/InvenTree/build/templates/build/build_children.html b/InvenTree/build/templates/build/build_children.html
index f655a549eb..87c8bd8608 100644
--- a/InvenTree/build/templates/build/build_children.html
+++ b/InvenTree/build/templates/build/build_children.html
@@ -10,7 +10,28 @@
+
+
+
+
{% endblock %}
{% block js_ready %}
+
+loadBuildTable($('#sub-build-table'), {
+ url: '{% url "api-build-list" %}',
+ filterTarget: "#filter-list-sub-build",
+ params: {
+ part_detail: true,
+ ancestor: {{ build.pk }},
+ }
+});
+
{% endblock %}
\ No newline at end of file
diff --git a/InvenTree/part/templates/part/build.html b/InvenTree/part/templates/part/build.html
index 9641181af8..46685ad064 100644
--- a/InvenTree/part/templates/part/build.html
+++ b/InvenTree/part/templates/part/build.html
@@ -9,7 +9,7 @@