anzwdev / al-code-outline

AL Code Outline for Visual Studio Code
MIT License
51 stars 13 forks source link

Remove redundant ApplicationArea adds unnecessary quotes #592

Closed dannoe closed 1 month ago

dannoe commented 2 months ago

This

page 50000 "Test" 
{
...
  field("Entry No."; Rec."Entry No.")
  {
       ApplicationArea = Basic, Suite;
  }
  field(Type; Rec.Type)
  {
       ApplicationArea = Basic, Suite;
  }
...
}

became this

page 50000 "Test" 
{
    ApplicationArea = "Basic, Suite";
...
}

but it should be this

page 50000 "Test" 
{
-    ApplicationArea = "Basic, Suite";
+    ApplicationArea = Basic, Suite;
...
}
anzwdev commented 1 month ago

Thank you for reporting this issue. I've fixed it in the latest extension release.