diff --git a/document-parser/data/docling_studio.db b/document-parser/data/docling_studio.db index bdb74be..7807faf 100644 Binary files a/document-parser/data/docling_studio.db and b/document-parser/data/docling_studio.db differ diff --git a/frontend/src/features/history/ui/HistoryList.vue b/frontend/src/features/history/ui/HistoryList.vue index cd49c10..f468a41 100644 --- a/frontend/src/features/history/ui/HistoryList.vue +++ b/frontend/src/features/history/ui/HistoryList.vue @@ -8,6 +8,7 @@ v-for="analysis in store.analyses" :key="analysis.id" class="history-item" + @click="openAnalysis(analysis)" >
@@ -21,7 +22,7 @@ — {{ duration(analysis) }}
- @@ -30,12 +31,18 @@ diff --git a/frontend/src/pages/StudioPage.vue b/frontend/src/pages/StudioPage.vue index cbcf370..729d6fa 100644 --- a/frontend/src/pages/StudioPage.vue +++ b/frontend/src/pages/StudioPage.vue @@ -269,6 +269,7 @@ diff --git a/frontend/src/shared/i18n.js b/frontend/src/shared/i18n.js index 3d96ce2..4f6350b 100644 --- a/frontend/src/shared/i18n.js +++ b/frontend/src/shared/i18n.js @@ -67,8 +67,12 @@ const messages = { 'upload.maxSize': 'Max 50Mo', // History - 'history.title': 'Historique des analyses', + 'history.title': 'Historique', + 'history.tabAnalyses': 'Analyses', + 'history.tabDocuments': 'Documents', 'history.empty': 'Aucune analyse. Allez dans Studio pour analyser votre premier document.', + 'history.emptyDocs': 'Aucun document. Importez un document depuis le Studio.', + 'history.open': 'Ouvrir', // Settings 'settings.title': 'Paramètres', @@ -138,8 +142,12 @@ const messages = { 'upload.uploading': 'Uploading...', 'upload.maxSize': 'Max 50MB', - 'history.title': 'Analysis History', + 'history.title': 'History', + 'history.tabAnalyses': 'Analyses', + 'history.tabDocuments': 'Documents', 'history.empty': 'No analyses yet. Go to Studio to analyze your first document.', + 'history.emptyDocs': 'No documents yet. Upload a document from the Studio.', + 'history.open': 'Open', 'settings.title': 'Settings', 'settings.apiUrl': 'API URL',