From f8af6f4eea42f79cbf6764974c4ba6201365652e Mon Sep 17 00:00:00 2001 From: Andrew Hackmann <5140848+bossinc@users.noreply.github.com> Date: Wed, 28 Aug 2024 09:12:23 -0500 Subject: [PATCH] Graphite: Add @ to the lexer (#92546) Add @ to the lexer --- public/app/plugins/datasource/graphite/lexer.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/public/app/plugins/datasource/graphite/lexer.ts b/public/app/plugins/datasource/graphite/lexer.ts index 419f47448bd..a587fb8ae24 100644 --- a/public/app/plugins/datasource/graphite/lexer.ts +++ b/public/app/plugins/datasource/graphite/lexer.ts @@ -81,6 +81,7 @@ for (let i = 0; i < 128; i++) { i === 37 || // % i === 35 || // # i === 61 || // = + i === 64 || // @ (i >= 97 && i <= 122); // a-z }