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:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2022-04-22 23:27:18 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2022-10-19 19:12:49 +0300
commit151d809aec3a4b3186551c95c2c0f43896452381 (patch)
treec0bdf0fb9bc1044c7ae7b84dc404919f630b18fb /src/components/TaskBody.vue
parent076c7ba8d9378e19c0e700477072d3f0fcd0dc02 (diff)
Migrate to vue3vue3
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
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 {