From 20b86ab42710eb4d5ac95f2c0bd873f4b691b800 Mon Sep 17 00:00:00 2001 From: Patrykb0802 Date: Mon, 2 Dec 2024 15:47:26 +0100 Subject: [PATCH] #3058 Improve content of list of points in BacNet source in data sources list view Added details for BACnet data points in description field on data source list view --- .../mango/vo/dataSource/bacnet/BACnetIPPointLocatorVO.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/com/serotonin/mango/vo/dataSource/bacnet/BACnetIPPointLocatorVO.java b/src/com/serotonin/mango/vo/dataSource/bacnet/BACnetIPPointLocatorVO.java index acfe56e585..2ade68790c 100644 --- a/src/com/serotonin/mango/vo/dataSource/bacnet/BACnetIPPointLocatorVO.java +++ b/src/com/serotonin/mango/vo/dataSource/bacnet/BACnetIPPointLocatorVO.java @@ -59,7 +59,8 @@ public PointLocatorRT createRuntime() { } public LocalizableMessage getConfigurationDescription() { - return new LocalizableMessage("common.default", remoteDeviceIp); + ObjectType objectType = new ObjectType(getObjectTypeId()); + return new LocalizableMessage("common.default", remoteDeviceIp + " / " + objectType.toString() + " / Obj Instance number: " + getObjectInstanceNumber()); } @JsonRemoteProperty