Fixed #4411 - broken activity report if purge didn’t remove relationship entries

This commit is contained in:
snipe 2017-11-22 06:20:28 -08:00
parent 09f20873df
commit 538757317b

View file

@ -276,6 +276,14 @@
}
// This just prints out the item type in the activity report
function itemTypeFormatter(value, row) {
if ((row) && (row.item) && (row.item.type)) {
return row.item.type;
}
}
function genericCheckinCheckoutFormatter(destination) {
return function (value,row) {