From a68ed580d0484a77cc0639afc7793d9e141cb4ec Mon Sep 17 00:00:00 2001 From: Ad Schellevis Date: Mon, 15 Nov 2021 20:00:32 +0100 Subject: [PATCH] CaptivePortal - connected since misformatted due to datetime already being converted in bootgrid, https://github.com/opnsense/core/blob/2e5d8ecf758167640a1297403c4aa9c743fc3522/src/opnsense/www/js/jquery.bootgrid.js#L1219-L1226 --- src/opnsense/mvc/app/views/OPNsense/CaptivePortal/clients.volt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/opnsense/mvc/app/views/OPNsense/CaptivePortal/clients.volt b/src/opnsense/mvc/app/views/OPNsense/CaptivePortal/clients.volt index f84bf4e3d..58fab5a9e 100644 --- a/src/opnsense/mvc/app/views/OPNsense/CaptivePortal/clients.volt +++ b/src/opnsense/mvc/app/views/OPNsense/CaptivePortal/clients.volt @@ -95,7 +95,6 @@ POSSIBILITY OF SUCH DAMAGE. $.each(data[i], function(key, value) { record[key] = value !== null ? value : ""; }); - record['startTime'] = moment(parseInt(record['startTime'])*1000); table.push(record); } $("#grid-clients").bootgrid('append', table);