Update AdminReports, add missing click handler. Fixes #5332

This commit is contained in:
Daniel Supernault 2024-11-07 01:36:05 -07:00
parent 3892ae7760
commit fe48b8ad10
No known key found for this signature in database
GPG key ID: 23740873EE6F76A1

View file

@ -384,7 +384,7 @@
<p class="small mb-0 text-wrap" style="max-width: 300px;word-break: break-all;">{{ report.message && report.message.length > 120 ? report.message.slice(0, 120) + '...' : report.message }}</p>
</td>
<td class="font-weight-bold align-middle">{{ timeAgo(report.created_at) }}</td>
<td class="align-middle"><a href="#" class="btn btn-primary btn-sm">View</a></td>
<td class="align-middle"><a href="#" class="btn btn-primary btn-sm" @click.prevent="showRemoteReport(report)">View</a></td>
</tr>
</tbody>
</table>