From 80affbabf8b3a2d4bea6603b8786c387d3f4c809 Mon Sep 17 00:00:00 2001
From: Liliana Sanfilippo <liliana.sanfilippo@uni-bielefeld.de>
Date: Wed, 6 Nov 2024 22:59:25 +0100
Subject: [PATCH] rtt fix

---
 src/components/Table.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/components/Table.tsx b/src/components/Table.tsx
index d9c4d2cd..35cc6163 100644
--- a/src/components/Table.tsx
+++ b/src/components/Table.tsx
@@ -50,7 +50,7 @@ export function ResTable({data, cols}: {data: Array<Res>, cols: Array<string>}){
               <td>{data[index].nr}</td>
               <td>{data[index].silent}</td>
               <td>{data[index].pbs}</td>
-              <td>{data[index].att}</td>
+              <td>{data[index].rtt}</td>
               <td>{data[index].q1}</td>
           </tr>
       )
-- 
GitLab