Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolasiy committed Apr 11, 2020
1 parent 5421450 commit 52a58ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/pages/toB/articles/subpages/Editor/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ export default function ArticleEditor() {
onCancel={() => setVisible(false)}
onClose={() => setVisible(false)}
>
{subList.map(book => (
<AtActionSheetItem onClick={() => selectedBook(book)} key={book._id}>
{book.name}
{subList.map(item => (
<AtActionSheetItem onClick={() => selectedBook(item)} key={item._id}>
{item.name}
</AtActionSheetItem>
))}
</AtActionSheet>
Expand Down

0 comments on commit 52a58ec

Please sign in to comment.