Skip to content

Commit

Permalink
feature/#2761_improving_selection_of_context_points
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
Patrykb0802 committed Nov 14, 2023
1 parent 4bc25b7 commit e8836c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WebContent/WEB-INF/jsp/scripting.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit e8836c1

Please sign in to comment.