client: display URLs in report

This commit is contained in:
Johann150 2022-01-20 20:47:24 +01:00
parent 6060e7d220
commit 748a830937
Signed by: Johann150
GPG Key ID: 9EE6577A2A06F8F1
1 changed files with 9 additions and 1 deletions

View File

@ -18,6 +18,13 @@
<Mfm :text="report.comment"/>
</div>
<hr/>
<div v-if="report.urls.length > 0">
{{ $ts.notes }}:
<ul>
<li v-for="url in report.urls"><MkUrl :url="url"/></li>
</ul>
</div>
<hr/>
<div>{{ $ts.reporter }}: <MkAcct :user="report.reporter"/></div>
<div v-if="report.assignee">
{{ $ts.moderator }}:
@ -29,7 +36,7 @@
{{ $ts.forwardReport }}
<template #caption>{{ $ts.forwardReportIsAnonymous }}</template>
</MkSwitch>
<MkButton v-if="!report.resolved" primary @click="resolve">{{ $ts.abuseMarkAsResolved }}</MkButton>
<MkButton v-if="!report.resolved" class="_formBlock" style="margin-bottom: 0;" primary @click="resolve">{{ $ts.abuseMarkAsResolved }}</MkButton>
</div>
</div>
</div>
@ -39,6 +46,7 @@
import MkButton from '@/components/ui/button.vue';
import MkSwitch from '@/components/form/switch.vue';
import MkKeyValue from '@/components/key-value.vue';
import MkUrl from '@/components/global/url.vue';
import { acct, userPage } from '@/filters/user';
import * as os from '@/os';