From e8836c1ead435da0814e835fc7bdfa425f5b68dc Mon Sep 17 00:00:00 2001 From: patrykb0802 Date: Tue, 14 Nov 2023 14:07:08 +0100 Subject: [PATCH] feature/#2761_improving_selection_of_context_points - Changed pointsArray in getPointsCB() method, so instead of datapoint's name it's displaying datasource's name - datapoint's name in context point selection dropdown menu for better selection of right datapoint - Data Type in Scripting view now displays data type instead of data type id --- WebContent/WEB-INF/jsp/scripting.jsp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WebContent/WEB-INF/jsp/scripting.jsp b/WebContent/WEB-INF/jsp/scripting.jsp index e06266b963..4cb7a4b04d 100644 --- a/WebContent/WEB-INF/jsp/scripting.jsp +++ b/WebContent/WEB-INF/jsp/scripting.jsp @@ -84,8 +84,8 @@ point = points[i]; pointsArray[i] = { "id":point.id, - "name":point.name, - "type":1 + "name":point.extendName, + "type":point.dataType, }; } document.getElementById("loader").style.display = "none";