Skip to content

Commit 94427f9

Browse files
committed
Cherry pick branch 'genexuslabs:issue96227' into beta
1 parent 740270b commit 94427f9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

java/src/main/java/com/genexus/webpanels/GXWebPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ private void addInputParmsMetadata(JSONObject inputParm) throws JSONException
631631
String key = "";
632632
if (inputParm.has("av") && inputParm.has("ctrl") && inputParm.has("prop"))
633633
{
634-
key = inputParm.has("av") + inputParm.getString("ctrl") + inputParm.getString("prop");
634+
key = inputParm.getString("av") + inputParm.getString("ctrl") + inputParm.getString("prop");
635635
}
636636
else if (inputParm.has("av"))
637637
{

0 commit comments

Comments
 (0)