From 3cf61c609ffa509f9427eff67a251e37930f9c9d Mon Sep 17 00:00:00 2001 From: Noah Zalev Date: Sun, 25 Jul 2021 01:52:39 -0400 Subject: [PATCH] Load last seen data on page load --- views/default.handlebars | 1 + 1 file changed, 1 insertion(+) diff --git a/views/default.handlebars b/views/default.handlebars index c62ce9e4..422ea4d9 100644 --- a/views/default.handlebars +++ b/views/default.handlebars @@ -1929,6 +1929,7 @@ meshserver.send({ action: 'usergroups' }); meshserver.send({ action: 'meshes' }); meshserver.send({ action: 'nodes', id: '{{currentNode}}' }); + meshserver.send({ action: 'lastseen' }); meshserver.send({ action: 'loginTokens' }); if (pluginHandler != null) { meshserver.send({ action: 'plugins' }); } if ('{{currentNode}}'.toLowerCase() == '') { meshserver.send({ action: 'files' }); }