fix(client): みつけるのロール一覧でコンディショナルロールが含まれるのを修正
This commit is contained in:
parent
824398509d
commit
f20abb4ee5
2 changed files with 2 additions and 1 deletions
|
@ -22,6 +22,7 @@ You should also include the user name that made the change.
|
||||||
### Bugfixes
|
### Bugfixes
|
||||||
- ロールの権限で「一般ユーザー」のロールがいきなり設定できない問題を修正
|
- ロールの権限で「一般ユーザー」のロールがいきなり設定できない問題を修正
|
||||||
- ユーザーページのバッジ表示を適切に折り返すように @arrow2nd
|
- ユーザーページのバッジ表示を適切に折り返すように @arrow2nd
|
||||||
|
- fix(client): みつけるのロール一覧でコンディショナルロールが含まれるのを修正
|
||||||
|
|
||||||
## 13.9.1 (2023/03/03)
|
## 13.9.1 (2023/03/03)
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ let roles = $ref();
|
||||||
os.api('roles/list', {
|
os.api('roles/list', {
|
||||||
limit: 30,
|
limit: 30,
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
roles = res;
|
roles = res.filter(x => x.target === 'manual');
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue