mirror of
https://github.com/DominikDoom/a1111-sd-webui-tagcomplete.git
synced 2026-01-26 19:19:57 +00:00
Remove leftover debug logs
This commit is contained in:
@@ -432,7 +432,6 @@ function insertTextAtCursor(textArea, result, tagword) {
|
||||
|
||||
umiPreviousTags = umiTags;
|
||||
|
||||
console.log("updated: " + umiPreviousTags)
|
||||
hideResults(textArea);
|
||||
}
|
||||
|
||||
@@ -726,7 +725,7 @@ async function autocomplete(textArea, prompt, fixedTag = null) {
|
||||
return acc;
|
||||
}, { positive: [], negative: [], optional: [], all: [] });
|
||||
|
||||
console.log({ matches })
|
||||
//console.log({ matches })
|
||||
|
||||
const filteredWildcards = (tagword) => {
|
||||
const wildcards = yamlWildcards.filter(x => {
|
||||
@@ -866,7 +865,7 @@ async function autocomplete(textArea, prompt, fixedTag = null) {
|
||||
|
||||
// Guard for empty results
|
||||
if (!results.length) {
|
||||
console.log('No results found for "' + tagword + '"');
|
||||
//console.log('No results found for "' + tagword + '"');
|
||||
hideResults(textArea);
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user