mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
fixes; generate hints as per multi-references typed by the usr
This commit is contained in:
parent
dfa441749b
commit
50ca363f6a
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue