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

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


The following commit(s) were added to refs/heads/main by this push:
     new 88469a6bc7 fix file type dropdown contents. fixes #7335 (#7339)
88469a6bc7 is described below

commit 88469a6bc7e4b8a818142f639323cee404ac3b8c
Author: Bart Maertens <[email protected]>
AuthorDate: Mon Jun 22 17:23:19 2026 +0200

    fix file type dropdown contents. fixes #7335 (#7339)
---
 .../hop/pipeline/transforms/propertyinput/PropertyInputDialog.java     | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/plugins/transforms/propertyinput/src/main/java/org/apache/hop/pipeline/transforms/propertyinput/PropertyInputDialog.java
 
b/plugins/transforms/propertyinput/src/main/java/org/apache/hop/pipeline/transforms/propertyinput/PropertyInputDialog.java
index 16cd270f92..0cf144f122 100644
--- 
a/plugins/transforms/propertyinput/src/main/java/org/apache/hop/pipeline/transforms/propertyinput/PropertyInputDialog.java
+++ 
b/plugins/transforms/propertyinput/src/main/java/org/apache/hop/pipeline/transforms/propertyinput/PropertyInputDialog.java
@@ -23,7 +23,6 @@ import java.util.Iterator;
 import org.apache.commons.lang3.StringUtils;
 import org.apache.hop.core.Const;
 import org.apache.hop.core.Props;
-import org.apache.hop.core.ResultFile;
 import org.apache.hop.core.exception.HopException;
 import org.apache.hop.core.fileinput.FileInputList;
 import org.apache.hop.core.row.IRowMeta;
@@ -478,7 +477,7 @@ public class PropertyInputDialog extends 
BaseTransformDialog {
     wlFileType.setLayoutData(fdlFileType);
     wFileType = new CCombo(wSettingsGroup, SWT.BORDER | SWT.READ_ONLY);
     wFileType.setEditable(true);
-    wFileType.setItems(ResultFile.FileType.getDescriptions());
+    wFileType.setItems(PropertyInputMeta.FileType.getDescriptions());
     PropsUi.setLook(wFileType);
     FormData fdFileType = new FormData();
     fdFileType.left = new FormAttachment(middle, 0);

Reply via email to