Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/TaskBody.vue')
-rw-r--r--src/components/TaskBody.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/TaskBody.vue b/src/components/TaskBody.vue
index 6aadc996..504272a8 100644
--- a/src/components/TaskBody.vue
+++ b/src/components/TaskBody.vue
@@ -151,7 +151,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
v-model="newTaskName"
:placeholder="subtasksCreationPlaceholder"
:disabled="isAddingTask"
- @keyup.27="showSubtaskInput = false">
+ @keyup.escape="showSubtaskInput = false">
</form>
</div>
<TaskDragContainer :tasks="filteredSubtasksShown"
@@ -188,7 +188,7 @@ import CalendarClock from 'vue-material-design-icons/CalendarClock.vue'
import Star from 'vue-material-design-icons/Star.vue'
import Undo from 'vue-material-design-icons/Undo.vue'
-import ClickOutside from 'v-click-outside'
+import ClickOutside from 'click-outside-vue3'
import { mapGetters, mapActions, mapMutations } from 'vuex'
export default {