Skip to content

Commit

Permalink
fix(heuristics): fixed error with evaluator identifier not showing up…
Browse files Browse the repository at this point in the history
… on reports page
  • Loading branch information
KarinePistili committed Apr 24, 2024
1 parent b1d8725 commit 45b169f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/views/admin/ReportView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,9 @@
</v-menu>
</template>

<template v-slot:item.userDocId="{ item }">
<div>{{ getCooperatorEmail(item.userDocId) }}</div>
<template v-slot:item.userDocId="{ item, index }">
<!-- <div>{{ getCooperatorEmail(item.userDocId) }}</div> -->
{{ `Ev${index + 1}` }}
</template>
<template v-slot:item.progress="{ item }">
<div>{{ item.progress }}</div>
Expand Down

0 comments on commit 45b169f

Please sign in to comment.