mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-08 15:54:51 +00:00
Update AdminReports, add missing click handler. Fixes #5332
This commit is contained in:
parent
3892ae7760
commit
fe48b8ad10
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
<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>
|
||||||
<td class="font-weight-bold align-middle">{{ timeAgo(report.created_at) }}</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>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
Loading…
Reference in a new issue