fixes; generate hints as per multi-references typed by the usr

This commit is contained in:
arpitnath 2024-04-09 23:31:25 +05:30
parent dfa441749b
commit 50ca363f6a

View file

@ -130,7 +130,7 @@ const EditorInput = ({
if (totalReferences > 1) {
const currentWord = queryInput.split('{{').pop().split('}}')[0];
queryInput = currentWord;
queryInput = '{{' + currentWord + '}}';
}
let completions = getAutocompletion(queryInput, validationType, hints, totalReferences);