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
path: root/src
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2021-08-24 15:17:20 +0300
committerGitHub <noreply@github.com>2021-08-24 15:17:20 +0300
commitdbc40430665a9379bb45767d27d8a075bf3818ac (patch)
treef02e9b1e0511e2d74cdde022fa2cfb8f66725ea6 /src
parentbea9a611165dd96d0dc65a980bb21d032da9b97e (diff)
Fix setting date and note
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
Diffstat (limited to 'src')
-rw-r--r--src/views/AppSidebar.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/views/AppSidebar.vue b/src/views/AppSidebar.vue
index 4742c271..82ae8d91 100644
--- a/src/views/AppSidebar.vue
+++ b/src/views/AppSidebar.vue
@@ -44,7 +44,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
:read-only="readOnly"
:task="task"
@editing="(editing) => editingStart = editing"
- @setValue="setStartDate">
+ @set-value="setStartDate">
<template #icon>
<CalendarStart :size="24" decorative />
</template>
@@ -58,7 +58,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
:read-only="readOnly"
:task="task"
@editing="(editing) => editingDue = editing"
- @setValue="setDueDate">
+ @set-value="setDueDate">
<template #icon>
<CalendarEnd :size="24" decorative />
</template>
@@ -230,7 +230,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
:value="task.note"
:read-only="readOnly"
:task="task"
- @setValue="({task, value}) => setNote({ task, note: value })" />
+ @set-value="({task, value}) => setNote({ task, note: value })" />
</AppSidebarTab>
<!-- <AppSidebarTab v-if="task"
id="app-sidebar-tab-reminder"