From 428336a6636921043d57c32808071ea67d3952cd Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 24 Jan 2026 13:20:42 +0100 Subject: [PATCH] feat: add paste hint on homescreen Inform users they can paste a list of items to create a new task. --- src/views/HomeView.vue | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index b6c4f2b..997043a 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -27,7 +27,10 @@ const handlePaste = (event: ClipboardEvent) => { return } - router.push({ name: 'new-task', state: { initialSteps: JSON.stringify(steps) } }) + router.push({ + name: 'new-task', + state: { initialSteps: JSON.stringify(steps) } + }) } onMounted(() => { @@ -42,13 +45,20 @@ onUnmounted(() => {