Correctly handle StockTrackingItem if there is no user data
This commit is contained in:
parent
20acf1f692
commit
68ec5df371
|
|
@ -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";
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in New Issue