Update dashboard

This commit is contained in:
2025-06-10 13:16:21 +02:00
parent 650695a311
commit 5ed412a71d
2 changed files with 9 additions and 4 deletions

View File

@@ -39,6 +39,11 @@ const router = createRouter({
path: 'exec-history', path: 'exec-history',
name: 'scenario-exec-history', name: 'scenario-exec-history',
component: () => import('@/views/pages/OldScenarioExec.vue') component: () => import('@/views/pages/OldScenarioExec.vue')
},
{
path: 'dashboard',
name: 'dashboard',
component: () => import('@/views/pages/DashExecution.vue')
}, },
{ {
path: '/executions/:name', path: '/executions/:name',

View File

@@ -169,11 +169,11 @@
</template> </template>
</Column> </Column>
<Column field="totalChatInteractions" header="Chat interactions" sortable> <!-- <Column field="totalChatInteractions" header="Chat interactions" sortable>
<template #body="slotProps"> <template #body="slotProps">
<span>{{ slotProps.data.totalChatInteractions }}</span> <span>{{ slotProps.data.totalChatInteractions }}</span>
</template> </template>
</Column> </Column> -->
</DataTable> </DataTable>
</div> </div>
@@ -382,7 +382,7 @@
</div> </div>
<!-- Tabella Chat List --> <!-- Tabella Chat List -->
<div class="mb-8"> <!-- <div class="mb-8">
<DataTable <DataTable
:value="paginatedChats" :value="paginatedChats"
ref="chatTable" ref="chatTable"
@@ -418,7 +418,7 @@
</tr> </tr>
</template> </template>
</DataTable> </DataTable>
</div> </div> -->
</div> </div>