diff --git a/client/pages/gwas.vue b/client/pages/gwas.vue
index 7d31240511967d10bc0798f2e68986dd457e709b..84ac79e528866c0e7f4add828330efa0fa991f36 100644
--- a/client/pages/gwas.vue
+++ b/client/pages/gwas.vue
@@ -11,25 +11,25 @@
       <h2>Select an ancestry:</h2>
       <div class="init-table-card-list">
         <v-card
-          v-for="(tableMeta, fileName) in initTables"
-          :key="fileName"
+          v-for="table in initTables"
+          :key="table.tableName"
           class="init-table-card"
-          :class="{ 'selected-table': selectedInitTable === fileName }"
-          :color="selectedInitTable === fileName ? 'blue lighten-4' : ''">
-          <v-card-title>{{ tableMeta.name }}</v-card-title>
-          <v-card-text>{{ tableMeta.desc }}</v-card-text>
+          :class="{ 'selected-table': selectedInitTable === table.tableName }"
+          :color="selectedInitTable === table.tableName ? 'blue lighten-4' : ''">
+          <v-card-title>{{ table.name }}</v-card-title>
+          <v-card-text>{{ table.desc }}</v-card-text>
           <v-card-text>
             <div>
-              <strong>{{ tableMeta.nb_snps.toLocaleString() }}</strong>
+              <strong>{{ table.nb_snps.toLocaleString() }}</strong>
               SNPS
             </div>
             <div>
-              <strong>{{ tableMeta.nb_phenotypes.toLocaleString() }}</strong>
+              <strong>{{ table.nb_phenotypes.toLocaleString() }}</strong>
               phenotypes
             </div>
           </v-card-text>
           <v-card-actions class="card-buttons">
-            <v-btn class="button" color="primary" @click="selectAncestry(fileName)">
+            <v-btn class="button" color="primary" @click="selectAncestry(table.tableName)">
               Select this ancestry
             </v-btn>
           </v-card-actions>