aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-03-27 12:01:56 +1100
committerTerry Truong <terry06890@gmail.com>2022-03-27 12:01:56 +1100
commit81444240bbb3de18fdace459a61d461ef46dc16a (patch)
tree440ac4a979be66a195bf57fe372c1bae83d7650e /src/components
parent65d3a99b3a95e55d7217d4dc45908f82d00981c9 (diff)
Remove redundant full-view div
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Settings.vue1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/components/Settings.vue b/src/components/Settings.vue
index 008632e..3bb0c7d 100644
--- a/src/components/Settings.vue
+++ b/src/components/Settings.vue
@@ -9,7 +9,6 @@ export default defineComponent({
},
methods: {
closeClicked(evt: Event){
- console.log(evt.target)
if (evt.target == this.$el || (this.$refs.closeIcon as HTMLElement).contains(evt.target as HTMLElement)){
this.$emit('settings-close');
}