This is an automated email from the ASF dual-hosted git repository.

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/master by this push:
     new b9b6fef229 fix empty fieldlist, fixes #3018
     new 79012f84f7 Merge pull request #3075 from hansva/#3018-http-post
b9b6fef229 is described below

commit b9b6fef229d7b89bb97333c7448dbb4fc370f0ca
Author: Hans Van Akelyen <[email protected]>
AuthorDate: Wed Jul 12 10:02:03 2023 +0200

    fix empty fieldlist, fixes #3018
---
 .../org/apache/hop/pipeline/transforms/httppost/HttpPostDialog.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/plugins/transforms/httppost/src/main/java/org/apache/hop/pipeline/transforms/httppost/HttpPostDialog.java
 
b/plugins/transforms/httppost/src/main/java/org/apache/hop/pipeline/transforms/httppost/HttpPostDialog.java
index 0873b5889c..cb79f01d38 100644
--- 
a/plugins/transforms/httppost/src/main/java/org/apache/hop/pipeline/transforms/httppost/HttpPostDialog.java
+++ 
b/plugins/transforms/httppost/src/main/java/org/apache/hop/pipeline/transforms/httppost/HttpPostDialog.java
@@ -1016,7 +1016,7 @@ public class HttpPostDialog extends BaseTransformDialog 
implements ITransformDia
   protected void setComboBoxes() {
     // Something was changed in the row.
     //
-    String[] fieldNames = ConstUi.sortFieldNames(inputFields);
+    fieldNames = ConstUi.sortFieldNames(inputFields);
     colinf[0].setComboValues(fieldNames);
     colinfquery[0].setComboValues(fieldNames);
   }

Reply via email to