Skip to content

Commit

Permalink
bug: allow adding existing communities
Browse files Browse the repository at this point in the history
  • Loading branch information
carlinmack authored and slint committed Jun 21, 2024
1 parent ef16ec7 commit 97725cf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ class CommunityCreateForm extends Component {
this.setState({
communities: data?.hits?.hits.map((item) => ({
text: item.metadata.title,
value: item.metadata.title,
key: item.metadata.title,
value: item.id,
key: item.id,
})),
});
})
Expand Down

0 comments on commit 97725cf

Please sign in to comment.