We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ca0ef4 commit 12b4469Copy full SHA for 12b4469
src/views/annotations/ListView.vue
@@ -155,7 +155,7 @@ onMounted(() => {
155
fetchData();
156
})
157
158
-const listRequest = computed(() => ({
+const listRequest = computed<IdentificationTasksApiAnnotationsListMineRequest>(() => ({
159
updatedAtAfter: selectedDateRange.value && selectedDateRange.value.length > 1 ? selectedDateRange.value[0].toISOString() : undefined,
160
updatedAtBefore: selectedDateRange.value && selectedDateRange.value.length > 1 ? new Date(new Date(selectedDateRange.value[1]).setDate(selectedDateRange.value[1].getDate() + 1)).toISOString() : undefined,
161
isDecisive: isExecutive.value ?? undefined,
0 commit comments