We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35fd373 commit 54d159aCopy full SHA for 54d159a
agentic_security/static/main.js
@@ -119,6 +119,9 @@ var app = new Vue({
119
document.addEventListener("mousedown", this.handleOutsideClick);
120
},
121
handleOutsideClick(event) {
122
+ if (!this.$refs.textarea) {
123
+ return
124
+ }
125
if (!this.$refs.textarea.contains(event.target)) {
126
this.isFocused = false;
127
document.removeEventListener("mousedown", this.handleOutsideClick);
0 commit comments