Commit 52ed64d8 authored by Pierre Smeyers's avatar Pierre Smeyers Committed by girija.saintange
Browse files

fix: missing tags array

parent f594d76c
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -30,7 +30,8 @@
            "prefix": "app",
            "style": "kebab-case"
          }
        ]
        ],
        "@typescript-eslint/no-explicit-any": "off"
      }
    },
    {
+4 −4
Original line number Diff line number Diff line
@@ -237,7 +237,7 @@ export class Variant {
  }

  get templateFile(): string {
    return this.template_path.split(/[\/\.]/)[1]
    return this.template_path.split(/[/.]/)[1]
  }

  getVariable(name: string): Variable | undefined {
@@ -276,7 +276,7 @@ export class Template {
  }

  get templateFile(): string {
    return this.template_path.split(/[\/\.]/)[1]
    return this.template_path.split(/[/.]/)[1]
  }

  get var_prefix(): string {