From 5c88c17d15f0f67f3f9d672ee69c6d79256cea2d Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 5 Mar 2023 10:48:04 +0900 Subject: [PATCH] =?UTF-8?q?fix(client):=20=E3=83=AD=E3=83=BC=E3=83=AB?= =?UTF-8?q?=E3=81=AE=E6=A8=A9=E9=99=90=E3=81=A7=E3=80=8C=E4=B8=80=E8=88=AC?= =?UTF-8?q?=E3=83=A6=E3=83=BC=E3=82=B6=E3=83=BC=E3=80=8D=E3=81=AE=E3=83=AD?= =?UTF-8?q?=E3=83=BC=E3=83=AB=E3=81=8C=E3=81=84=E3=81=8D=E3=81=AA=E3=82=8A?= =?UTF-8?q?=E8=A8=AD=E5=AE=9A=E3=81=A7=E3=81=8D=E3=81=AA=E3=81=84=E5=95=8F?= =?UTF-8?q?=E9=A1=8C=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix #10203 --- CHANGELOG.md | 2 +- packages/frontend/src/pages/admin/roles.edit.vue | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ce1c8aab9..1a1b7a2a3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,7 @@ You should also include the user name that made the change. - サーバーのパフォーマンスを改善 ### Bugfixes -- +- ロールの権限で「一般ユーザー」のロールがいきなり設定できない問題を修正 ## 13.9.1 (2023/03/03) diff --git a/packages/frontend/src/pages/admin/roles.edit.vue b/packages/frontend/src/pages/admin/roles.edit.vue index 2a65a75187..ac6cca84c1 100644 --- a/packages/frontend/src/pages/admin/roles.edit.vue +++ b/packages/frontend/src/pages/admin/roles.edit.vue @@ -46,7 +46,8 @@ if (props.id) { data = { name: 'New Role', description: '', - rolePermission: 'normal', + isAdministrator: false, + isModerator: false, color: null, iconUrl: null, target: 'manual',