diff --git a/ka-note/VERSION b/ka-note/VERSION index bc08bb2..1b9c4a2 100644 --- a/ka-note/VERSION +++ b/ka-note/VERSION @@ -1 +1 @@ -1.1.89 \ No newline at end of file +1.1.92 \ No newline at end of file diff --git a/ka-note/client/src/lib/components/DashboardView.svelte b/ka-note/client/src/lib/components/DashboardView.svelte index b3b1e61..295fd7e 100644 --- a/ka-note/client/src/lib/components/DashboardView.svelte +++ b/ka-note/client/src/lib/components/DashboardView.svelte @@ -172,7 +172,7 @@ const allHistory = await db.historyEntries.filter(h => !h.deletedAt).toArray(); const allContexts = await db.contexts.filter(c => !c.deletedAt).toArray(); - const results: { topicId: string; historyEntryId: string; topicTitle: string; contextName: string; date: string; text: string }[] = []; + const results: { topicId: string; historyEntryId: string; topicTitle: string; contextId: string; contextName: string; date: string; text: string }[] = []; for (const h of allHistory) { const topic = allTopics.find(t => t.id === h.topicId); @@ -194,6 +194,7 @@ topicId: topic.id, historyEntryId: h.id, topicTitle: topic.title, + contextId: ctx?.id ?? '', contextName: ctx?.name ?? 'Unknown', date: h.date, text: h.text @@ -531,14 +532,23 @@ {#each $activityLog ?? [] as entry} -