Get new frontend to type check clean

Epic undertaking.
This commit is contained in:
Eli Ribble 2026-03-31 14:52:53 +00:00
parent 6f9a511874
commit 21b7b68f50
No known key found for this signature in database
52 changed files with 1616 additions and 1126 deletions

View file

@ -143,7 +143,7 @@
upload.status
}}</span>
</td>
<td>{{ upload.record_count }} entries</td>
<td>{{ upload.recordcount }} entries</td>
<td>
<RouterLink :to="`/_/configuration/upload/${upload.id}`"
><button class="btn btn-sm btn-outline-primary">View</button>
@ -160,9 +160,10 @@
import { computed, onMounted } from "vue";
import TimeRelative from "@/components/TimeRelative.vue";
import { useUploadStore } from "@/store/upload";
import { Upload } from "@/types";
const uploadStore = useUploadStore();
const uploads = computed(() => {
const uploads = computed((): Upload[] | null => {
return uploadStore.all;
});
onMounted(() => {