From be543ef59a59a210d6d3d662294fd9a944e6ba5f Mon Sep 17 00:00:00 2001 From: Daniel Neto Date: Mon, 30 Jun 2025 15:47:30 -0300 Subject: [PATCH] Add 'Device' column to Video Views Info table and render app data --- view/videoViewsInfo.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/view/videoViewsInfo.php b/view/videoViewsInfo.php index 56f01ce3be..5c66f450b8 100644 --- a/view/videoViewsInfo.php +++ b/view/videoViewsInfo.php @@ -89,6 +89,7 @@ $_page->loadBasicCSSAndJS(); When Time Location + Device @@ -97,6 +98,7 @@ $_page->loadBasicCSSAndJS(); When Time Location + Device @@ -148,6 +150,12 @@ $_page->loadBasicCSSAndJS(); render: function(data, type, row) { return row.location_name } + }, + { + data: 'app', + render: function(data, type, row) { + return row.app + } } ], select: true, @@ -159,4 +167,4 @@ $_page->loadBasicCSSAndJS(); print(); -?> \ No newline at end of file +?>