mirror of
https://github.com/Physton/sd-webui-prompt-all-in-one.git
synced 2026-04-30 11:11:47 +00:00
Fix issue #1: Conflict with tagcomplete causing the inability to select tags in tagcomplete.
Fix issue #1: Conflict with tagcomplete causing the inability to select tags in tagcomplete. Former-commit-id: d7823e4265600af859745a2786151ef82321c95f
This commit is contained in:
@@ -1 +1 @@
|
||||
c9bd15f771c1f0bf45820ab5db34a6b26736cf1c
|
||||
a0b7cb269fbf832a41a24aca46027515a3d492c3
|
||||
@@ -1 +1 @@
|
||||
19762f61be8732569517cc002fa6995a4e7ee64e
|
||||
9d048e74cdcf8cd85072a83b193e2e4d19d7fd5d
|
||||
@@ -353,6 +353,10 @@ export default {
|
||||
}, 1000)*/
|
||||
},
|
||||
async onTextareaChange(event) {
|
||||
const autocompleteResults = this.textarea.parentElement.getElementsByClassName('autocompleteResults')
|
||||
if (autocompleteResults.length > 0 && autocompleteResults[0].style.display !== 'none') {
|
||||
return
|
||||
}
|
||||
let value = this.textarea.value.trim()
|
||||
if (value === this.prompt) return
|
||||
let tags = common.splitTags(value)
|
||||
|
||||
Reference in New Issue
Block a user