diff --git a/InvenTree/InvenTree/static/script/inventree/part.js b/InvenTree/InvenTree/static/script/inventree/part.js
index daa82485b7..693a4d1faa 100644
--- a/InvenTree/InvenTree/static/script/inventree/part.js
+++ b/InvenTree/InvenTree/static/script/inventree/part.js
@@ -196,6 +196,9 @@ function loadPartTable(table, url, options={}) {
} else if (row.on_order) {
value = "On Order : " + row.on_order + "";
link = "orders";
+ } else if (row.building) {
+ value = "Building : " + row.building + "";
+ link = "builds";
} else {
value ="No Stock";
}