From 0b781ae8cef8f0e787465e0065c2644e243b1fef Mon Sep 17 00:00:00 2001 From: Andrea Vos Date: Sun, 25 Jun 2023 09:31:20 +0200 Subject: [PATCH] =?UTF-8?q?(admin)=20faster=20profile=20moderation=20?= =?UTF-8?q?=E2=80=93=20skip=20confirming=20non-ban?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/AbuseReports.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/AbuseReports.vue b/components/AbuseReports.vue index 80d4499b0..a04ea0a06 100644 --- a/components/AbuseReports.vue +++ b/components/AbuseReports.vue @@ -72,7 +72,7 @@ export default { .join(', '); }, async handleReport(id) { - await this.$confirm('Are you sure you want to mark this report as handled?', 'success'); + // await this.$confirm('Are you sure you want to mark this report as handled?', 'success'); await this.$post(`/admin/reports/handle/${id}`); this.abuseReports = this.abuseReports.map(r => { if (r.id === id) { r.isHandled = true; }