You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this will bring up the autocomplete list, TAB select something from the list. At this point everything up to the next single quote is replaced and you end up with:
When using autocomplete for a param or variable name in the middle of an expression, too much code is removed upon completion.
Take the following expression:
"[if('true', variables('one'), variables('two'))]"
Now replace true with:
parameters('
this will bring up the autocomplete list, TAB select something from the list. At this point everything up to the next single quote is replaced and you end up with:
[if(parameters('enableBootDiags')one'), variables('two'))]
If autocomplete stopped replacement at the comma or whitespace this would work perfectly.
The text was updated successfully, but these errors were encountered: