Skip to content

Commit 12b4469

Browse files
committed
Fix build
1 parent 7ca0ef4 commit 12b4469

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/views/annotations/ListView.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ onMounted(() => {
155155
fetchData();
156156
})
157157
158-
const listRequest = computed(() => ({
158+
const listRequest = computed<IdentificationTasksApiAnnotationsListMineRequest>(() => ({
159159
updatedAtAfter: selectedDateRange.value && selectedDateRange.value.length > 1 ? selectedDateRange.value[0].toISOString() : undefined,
160160
updatedAtBefore: selectedDateRange.value && selectedDateRange.value.length > 1 ? new Date(new Date(selectedDateRange.value[1]).setDate(selectedDateRange.value[1].getDate() + 1)).toISOString() : undefined,
161161
isDecisive: isExecutive.value ?? undefined,

0 commit comments

Comments
 (0)