1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-05 17:05:55 +02:00

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

@@ -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>