Fix: #154 サークル投稿履歴が遡れない問題 (#156)

This commit is contained in:
KMY(雪あすか) 2023-10-21 10:15:58 +09:00 committed by GitHub
parent 292fbbb70d
commit 89ef448d3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 21 additions and 26 deletions

View file

@ -32,7 +32,7 @@ class CircleSelect extends PureComponent {
}
const listOptions = circles.toArray().filter((circle) => circle).map((circle) => {
return { value: circle.get('id'), label: circle.get('title') };
return { value: circle[1].get('id'), label: circle[1].get('title') };
});
const listValue = listOptions.find((opt) => opt.value === circleId);