From e216a90c4978833367c3cfc8bd2a867e77365cf1 Mon Sep 17 00:00:00 2001 From: Kevin Schiffer Date: Mon, 10 Jul 2023 12:49:15 +0200 Subject: [PATCH] console: Fix missing last seen value --- pkg/webui/console/containers/devices-table/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/webui/console/containers/devices-table/index.js b/pkg/webui/console/containers/devices-table/index.js index f56908ae24..c5c220cce6 100644 --- a/pkg/webui/console/containers/devices-table/index.js +++ b/pkg/webui/console/containers/devices-table/index.js @@ -1,4 +1,4 @@ -// Copyright © 2019 The Things Network Foundation, The Things Industries B.V. +// Copyright © 2023 The Things Network Foundation, The Things Industries B.V. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -162,6 +162,7 @@ const DevicesTableInner = () => { device.application_server_address || device.network_server_address || device.join_server_address, + _lastSeen: device.last_seen_at, }, _meta: { clickable: !isOtherClusterDevice(device),