mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-15 19:45:46 +00:00
Correctly handle StockTrackingItem if there is no user data
This commit is contained in:
@ -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";
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
Reference in New Issue
Block a user