Skip to content

Commit

Permalink
0.14.0 (release description to come later)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexNisnevich committed Dec 4, 2020
1 parent 4a032ee commit f9185d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wordbots",
"version": "0.13.1-alpha",
"version": "0.14.0-alpha",
"description": "A card-and-board game that showcases card game semantic parsing",
"license": "MIT",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/common/components/cards/RecentCardsCarousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default class RecentCardsCarousel extends React.Component<RecentCardsCaro
&& (c.metadata.source.uid === c.metadata.ownerId) // cards imported from other players' collections
)
.orderBy((c: w.CardInStore) => c.metadata.updated, ['desc'])
.slice(0, 10)
.slice(0, 15)
.value();

if (recentCards.length < RecentCardsCarousel.MAX_CARDS_TO_SHOW && recentCards.length > 0) {
Expand Down

0 comments on commit f9185d7

Please sign in to comment.