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 7df84dea08 Fix extra horizontal line shown in Fields table of
Standardize Phone Number transform (#6506)
7df84dea08 is described below
commit 7df84dea08fc56e5d46575738ea4bac1c3ca05a0
Author: lance <[email protected]>
AuthorDate: Tue Feb 10 17:44:51 2026 +0800
Fix extra horizontal line shown in Fields table of Standardize Phone Number
transform (#6506)
Signed-off-by: lance <[email protected]>
---
.../standardizephonenumber/StandardizePhoneNumberDialog.java | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git
a/plugins/transforms/standardizephonenumber/src/main/java/org/apache/hop/pipeline/transforms/standardizephonenumber/StandardizePhoneNumberDialog.java
b/plugins/transforms/standardizephonenumber/src/main/java/org/apache/hop/pipeline/transforms/standardizephonenumber/StandardizePhoneNumberDialog.java
index 0e24102e96..85002e3ff0 100644
---
a/plugins/transforms/standardizephonenumber/src/main/java/org/apache/hop/pipeline/transforms/standardizephonenumber/StandardizePhoneNumberDialog.java
+++
b/plugins/transforms/standardizephonenumber/src/main/java/org/apache/hop/pipeline/transforms/standardizephonenumber/StandardizePhoneNumberDialog.java
@@ -117,10 +117,6 @@ public class StandardizePhoneNumberDialog extends
BaseTransformDialog {
setButtonPositions(new Button[] {wOk, wCancel}, margin, null);
- Label hSpacer = new Label(shell, SWT.HORIZONTAL | SWT.SEPARATOR);
- hSpacer.setLayoutData(
- new FormDataBuilder().left().right().bottom(wOk,
-margin).height(2).result());
-
// Transform name line
//
Label wlTransformName = new Label(shell, SWT.RIGHT);
@@ -229,7 +225,7 @@ public class StandardizePhoneNumberDialog extends
BaseTransformDialog {
.left()
.fullWidth()
.top(lblFields, margin)
- .bottom(hSpacer, -margin)
+ .bottom(wOk, -margin)
.result());
wFields.getTable().addListener(SWT.Resize, new ColumnsResizer(2, 20, 20,
10, 12, 12, 12, 8));