diff --git a/website/client/components/tasks/taskModal.vue b/website/client/components/tasks/taskModal.vue index 66323b7292..ce6aeece9a 100644 --- a/website/client/components/tasks/taskModal.vue +++ b/website/client/components/tasks/taskModal.vue @@ -1,7 +1,7 @@ @@ -997,8 +997,13 @@ export default { focusInput () { this.$refs.inputToFocus.focus(); }, +<<<<<<< HEAD handleEsc (e) { if (e.keyCode === 27 && this.showTagsSelect) { +======= + handleClick (e) { + if (this.$refs.popup && !this.$refs.popup.$el.contains(e.target)) { +>>>>>>> thefifthisa-clickout this.closeTagsPopup(); } },