From 538757317b8c532623b7378a3ebdf71925220ed2 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 22 Nov 2017 06:20:28 -0800 Subject: [PATCH] =?UTF-8?q?Fixed=20#4411=20-=20broken=20activity=20report?= =?UTF-8?q?=20if=20purge=20didn=E2=80=99t=20remove=20relationship=20entrie?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/partials/bootstrap-table.blade.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/resources/views/partials/bootstrap-table.blade.php b/resources/views/partials/bootstrap-table.blade.php index 8b32bd5ad0..8a51b1e71a 100644 --- a/resources/views/partials/bootstrap-table.blade.php +++ b/resources/views/partials/bootstrap-table.blade.php @@ -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) {