From 3e57842ac687ca642c5e99569224e215b3dec299 Mon Sep 17 00:00:00 2001 From: DominikDoom Date: Tue, 29 Aug 2023 10:23:13 +0200 Subject: [PATCH] Remove unnecessary autocomplete call in wildcards which would result in duplicate file requests --- javascript/ext_wildcards.js | 1 - 1 file changed, 1 deletion(-) diff --git a/javascript/ext_wildcards.js b/javascript/ext_wildcards.js index 328afdb..324644e 100644 --- a/javascript/ext_wildcards.js +++ b/javascript/ext_wildcards.js @@ -159,7 +159,6 @@ function keepOpenIfWildcard(tagType, sanitizedText, newPrompt, textArea) { // If it's a wildcard, we want to keep the results open so the user can select another wildcard if (tagType === ResultType.wildcardFile || tagType === ResultType.yamlWildcard) { hideBlocked = true; - autocomplete(textArea, newPrompt, sanitizedText); setTimeout(() => { hideBlocked = false; }, 450); return true; }