We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e13a406 commit 3e73578Copy full SHA for 3e73578
tagexpr.go
@@ -430,6 +430,9 @@ func (t *TagExpr) Eval(exprSelector string) interface{} {
430
// Compatible with single mode or the expression with the name @
431
if strings.HasSuffix(exprSelector, "@") {
432
exprSelector = exprSelector[:len(exprSelector)-1]
433
+ if strings.HasSuffix(exprSelector, "@") {
434
+ exprSelector = exprSelector[:len(exprSelector)-1]
435
+ }
436
expr, ok = t.s.exprs[exprSelector]
437
}
438
if !ok {
0 commit comments