Skip to content

Commit

Permalink
Feat(frontend): コントロールパネル「通報」において、通報者もリンクで飛べるように修正 (#12427)
Browse files Browse the repository at this point in the history
  • Loading branch information
camilla-ett authored Nov 24, 2023
1 parent 536f08c commit 9c84055
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/src/components/MkAbuseReport.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<Mfm :text="report.comment"/>
</div>
<hr/>
<div>{{ i18n.ts.reporter }}: <MkAcct :user="report.reporter"/></div>
<div>{{ i18n.ts.reporter }}: <MkA :to="`/admin/user/${report.reporter.id}`" class="_link">@{{ report.reporter.username }}</MkA></div>
<div v-if="report.assignee">
{{ i18n.ts.moderator }}:
<MkAcct :user="report.assignee"/>
Expand Down

0 comments on commit 9c84055

Please sign in to comment.