diff --git a/InvenTree/stock/templates/stock/item.html b/InvenTree/stock/templates/stock/item.html index 29c2d78e88..a53feec8c3 100644 --- a/InvenTree/stock/templates/stock/item.html +++ b/InvenTree/stock/templates/stock/item.html @@ -220,7 +220,14 @@ field: 'user', title: 'User', formatter: function(value, row, index, field) { - return value.username; + if (value) + { + return value.username; + } + else + { + return "No user information"; + } } } ],