Skip to content

Commit

Permalink
fix(reportEmail): now appering you
Browse files Browse the repository at this point in the history
  • Loading branch information
jvJUCA committed Apr 22, 2024
1 parent 13c10d2 commit 386c3c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/views/admin/ReportView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ export default {
return (
'Are you sure you want to delete ' +
(this.report !== null ? this.report.email : '') +
'\'s report? This action can\'t be undone'
"'s report? This action can't be undone"
)
},
answers() {
Expand Down Expand Up @@ -262,6 +262,7 @@ export default {
},
getCooperatorEmail(userDocId) {
if (userDocId == this.user.id) return 'You'
let cooperatorEmail = null
if (this.test.cooperators && Array.isArray(this.test.cooperators)) {
for (const element of this.test.cooperators) {
Expand Down

0 comments on commit 386c3c9

Please sign in to comment.