1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2025-01-24 10:43:58 +09:00

Merge pull request #540

Fix(frontend): 通報通知メールの受け取り先を変更できない
This commit is contained in:
NoriDev 2024-11-29 11:06:49 +09:00 committed by GitHub
commit f493c31309
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -253,11 +253,14 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkFolder>
<template #icon><i class="ti ti-exclamation-circle"></i></template>
<template #label>{{ i18n.ts.abuseReports }}</template>
<template v-if="emailToReceiveAbuseReportForm.modified.value" #footer>
<MkFormFooter :form="emailToReceiveAbuseReportForm"/>
</template>
<div class="_gaps_m">
<MkInput v-model="emailToReceiveAbuseReportForm.state.emailToReceiveAbuseReport" type="email">
<template #prefix><i class="ti ti-mail"></i></template>
<template #label>{{ i18n.ts.emailToReceiveAbuseReport }}</template>
<template #label>{{ i18n.ts.emailToReceiveAbuseReport }} <span v-if="emailToReceiveAbuseReportForm.modifiedStates.emailToReceiveAbuseReport" class="_modified">{{ i18n.ts.modified }}</span></template>
<template #caption>{{ i18n.ts.emailToReceiveAbuseReportCaption }}</template>
</MkInput>
</div>