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
When searching and using autocomplete, it is replacing characters after the cursor when adding in the autocomplete value. The issue is unless you are paying attention you don't realize it's dropping off fields from your query.
Steps to reproduce:
Enter the query "Select Id, Name, Phone from Account limit 10"
Have "account" selected in the object dropdown for autocomplete
Put your cursor right before the P in phone
Start typing ty (to select Type)
Hit the enter key to select Type from autocomplete
Results:
Query is updated and Type is added however, it deletes phone and now shows "select Id, Name, Type from Account limit 10"
Expected Results:
Query is updated to select Type and it replaces the characters before the cursor (for autocompletion) but does not replace the characters after so at the end of autocomplete the query would show "select Id, Name, TypePhone from Account limit 10" just as if you were completing in another IDE.
The text was updated successfully, but these errors were encountered:
When searching and using autocomplete, it is replacing characters after the cursor when adding in the autocomplete value. The issue is unless you are paying attention you don't realize it's dropping off fields from your query.
Steps to reproduce:
Results:
Query is updated and Type is added however, it deletes phone and now shows "select Id, Name, Type from Account limit 10"
Expected Results:
Query is updated to select Type and it replaces the characters before the cursor (for autocompletion) but does not replace the characters after so at the end of autocomplete the query would show "select Id, Name, TypePhone from Account limit 10" just as if you were completing in another IDE.
The text was updated successfully, but these errors were encountered: