We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecc82cf commit f067894Copy full SHA for f067894
apps/parser/internal/variables/custom_var/custom_var.go
@@ -48,6 +48,8 @@ var CustomVar = &types.Variable{
48
text := v.EvalValue
49
if parseCtx.Text != nil {
50
text = strings.ReplaceAll(text, "$(command.param)", *parseCtx.Text)
51
+ } else {
52
+ text = strings.ReplaceAll(text, "$(command.param)", "")
53
}
54
55
filledWithVariablesValue, err := parseCtx.Services.Bus.Parser.ParseVariablesInText.Request(
0 commit comments