diff --git a/src/app/components/logs-dashboard/logs-slugs/logs-slugs.component.ts b/src/app/components/logs-dashboard/logs-slugs/logs-slugs.component.ts
index 87331e91a68ede41a7e0c3913bb7726a421c7e5b..5ec5335d23f25e281dc6c9eefce900ecdea08d4a 100644
--- a/src/app/components/logs-dashboard/logs-slugs/logs-slugs.component.ts
+++ b/src/app/components/logs-dashboard/logs-slugs/logs-slugs.component.ts
@@ -40,9 +40,9 @@ export class LogsSlugsComponent implements OnInit {
   }
   getAllUniqueFields() {
     this.dataLogsService.getAllUniqueFields().subscribe((result) => {
-      this.childSessionsList = result[0]['session_id_list'];
-      for (let i = 0; i < this.childNbSessions; i++) {
-        this.getProcessTimeAggr(this.childSessionsList[i]);
+      this.childSlugsList = result[0]['slug_list'];
+      for (let i = 0; i < this.childNbSlugs; i++) {
+        this.getProcessTimeAggr(this.childSlugsList[i]);
       }
       console.log('allSessionsIdInfo: ', this.allSessionsIdInfo);
     },