fix(client): みつけるのロール一覧でコンディショナルロールが含まれるのを修正

This commit is contained in:
syuilo 2023-03-06 02:12:35 +00:00
parent 824398509d
commit f20abb4ee5
2 changed files with 2 additions and 1 deletions

View file

@ -22,6 +22,7 @@ You should also include the user name that made the change.
### Bugfixes
- ロールの権限で「一般ユーザー」のロールがいきなり設定できない問題を修正
- ユーザーページのバッジ表示を適切に折り返すように @arrow2nd
- fix(client): みつけるのロール一覧でコンディショナルロールが含まれるのを修正
## 13.9.1 (2023/03/03)

View file

@ -16,7 +16,7 @@ let roles = $ref();
os.api('roles/list', {
limit: 30,
}).then(res => {
roles = res;
roles = res.filter(x => x.target === 'manual');
});
</script>