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 f369698 commit 31e5325Copy full SHA for 31e5325
web/src/components/NewTaskDialog.vue
@@ -3,8 +3,8 @@
3
v-model="dialog"
4
:save-button-text="TEMPLATE_TYPE_ACTION_TITLES[templateType]"
5
title="New Task"
6
- @save="close"
7
- @close="close"
+ @save="closeDialog"
+ @close="closeDialog"
8
>
9
<template v-slot:title={}>
10
<v-icon small class="mr-4">{{ TEMPLATE_TYPE_ICONS[templateType] }}</v-icon>
@@ -60,8 +60,10 @@ export default {
60
async value(val) {
61
this.dialog = val;
62
},
63
+ },
64
- close(e) {
65
+ methods: {
66
+ closeDialog(e) {
67
this.dialog = false;
68
if (e) {
69
EventBus.$emit('i-show-task', {
0 commit comments