1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-07-28 10:54:35 +02:00

fix(frontend): 非公開ロールの常時表示設定を隠す

This commit is contained in:
mattyatea
2026-05-23 20:24:06 +09:00
parent 63a8520191
commit d490936bf6
2 changed files with 2 additions and 1 deletions

View File

@@ -4,6 +4,7 @@
### Client
- Feat: 公開ロールとロールバッジを個別に非表示にできるようにしました
- Fix: ロール設定画面で公開ロールが無効な場合は常に表示する設定を表示しないようにしました
### Server
- Feat: 公開ロール/ロールバッジを常に表示する管理者設定を追加しました

View File

@@ -62,7 +62,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template #caption>{{ i18n.ts._role.descriptionOfIsPublic }}</template>
</MkSwitch>
<MkSwitch v-model="role.isPublicDisplayRequired" :readonly="readonly">
<MkSwitch v-if="role.isPublic" v-model="role.isPublicDisplayRequired" :readonly="readonly">
<template #label>{{ i18n.ts._role.isPublicDisplayRequired }}</template>
<template #caption>{{ i18n.ts._role.descriptionOfIsPublicDisplayRequired }}</template>
</MkSwitch>