({
description: '',
due_date: '',
assigned_to: currentUserId.value,
+ created_by: currentUserId.value,
tag_ids: [],
attachments: [],
});
@@ -54,6 +55,7 @@ const submit = () => {
onSuccess: () => {
form.reset();
form.assigned_to = currentUserId.value;
+ form.created_by = currentUserId.value;
form.tag_ids = [];
selectedTags.value = [];
isOpen.value = false;
@@ -128,6 +130,7 @@ const submit = () => {
@@ -135,11 +138,23 @@ const submit = () => {
-
+