diff --git a/src/views/PersonDetailView.vue b/src/views/PersonDetailView.vue
index c133175..958a721 100644
--- a/src/views/PersonDetailView.vue
+++ b/src/views/PersonDetailView.vue
@@ -89,7 +89,11 @@
-
Person not found
+
+ Person not found: {{ route.params.uuid }}
+
+ People loaded: {{ peopleCount }}
+
@@ -134,6 +138,7 @@ const router = useRouter()
const person = ref
(null)
const loading = ref(true)
const profile = ref('')
+const peopleCount = ref(0)
const faces = ref([])
const traces = ref([])
const mergedTraces = ref([])
@@ -154,6 +159,7 @@ onMounted(async () => {
try {
const people: any = await invoke('getPeople', { page: 1, perPage: 1000 })
console.log('getPeople result count:', Array.isArray(people) ? people.length : 'not array')
+ peopleCount.value = Array.isArray(people) ? people.length : 0
const found = (Array.isArray(people) ? people : []).find((p: any) => p.identity_uuid === uuid)
console.log('Person found:', !!found, found?.name)
if (found) {