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

shanedell pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git


The following commit(s) were added to refs/heads/main by this push:
     new ede5e80  Address Incorrect Number of Fields for none TDML Action Upon 
First Opening
ede5e80 is described below

commit ede5e807820ccf143de1bc218557fa7493b4b214
Author: Jeremy Yao <[email protected]>
AuthorDate: Thu May 8 11:23:59 2025 -0400

    Address Incorrect Number of Fields for none TDML Action Upon First Opening
    
    Closes #1248
---
 src/launchWizard/launchWizard.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/launchWizard/launchWizard.ts b/src/launchWizard/launchWizard.ts
index 3e3ab2a..fd9f906 100644
--- a/src/launchWizard/launchWizard.ts
+++ b/src/launchWizard/launchWizard.ts
@@ -510,7 +510,7 @@ class LaunchWizard {
 
     // tdml items need 0 height and width when hidden so there is no large 
empty space
     let tdmlNameDesVisOrHiddenStyle =
-      tdmlAction !== null
+      tdmlAction !== null && tdmlAction !== 'none' // Hide TDML name and desc 
fields if tdmlAction is none
         ? 'margin-top: 10px; visibility: visible;'
         : 'width: 0px; height: 0px; visibility: hidden'
     let tdmlPathVisOrHiddenStyle =

Reply via email to