Group moderation log location

This commit is contained in:
Natsumi
2025-06-12 14:46:58 +12:00
parent eabf514f2c
commit 2742be0c5e

View File

@@ -656,6 +656,9 @@
:label="t('dialog.group_member_moderation.description')"
prop="description">
<template slot-scope="scope">
<location
v-if="scope.row?.targetId.startsWith('wrld_')"
:location="scope.row.targetId" />
<span v-text="scope.row.description"></span>
</template>
</el-table-column>
@@ -807,6 +810,7 @@
</template>
<script setup>
import Location from '../../Location.vue';
import { getCurrentInstance, inject, ref, watch } from 'vue';
import { useI18n } from 'vue-i18n-bridge';
import { groupRequest, userRequest } from '../../../api';