Skip to content
Snippets Groups Projects
Commit f20abb4e authored by syuilo's avatar syuilo
Browse files

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

parent 82439850
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
......@@ -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>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment