anzwdev / al-code-outline

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

Casing on pages created from "New AL File Wizard" #579

Closed jwikman closed 3 months ago

jwikman commented 3 months ago

The area name in pages that is created by the "New AL File Wizard" is wrong. LinterCop Rule LC0005 now detects them, so I found that in quite a few places. :)

Current:

    layout
    {
        area(content)
        {

Correc:

    layout
    {
        area(Content)
        {
jwikman commented 3 months ago

Btw, the cleanup / fix identifier actions do fix this casing issue.

jwikman commented 3 months ago

Thanks @anzwdev, works as expected. 👍