Skip to content

Commit

Permalink
fix: correctly truncate subname in decklist
Browse files Browse the repository at this point in the history
  • Loading branch information
fspoettel committed Jan 6, 2025
1 parent 667736d commit b276cf6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/card-list/card-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export function CardList(props: CardListImplementationProps) {
card: data.cards[index],
currentTop,
index,
itemSize,
size: itemSize,
limitOverride: getDeckLimitOverride(resolvedDeck, data.cards[index].code),
onChangeCardQuantity,
ownedCount: canCheckOwnerhip
Expand Down
4 changes: 2 additions & 2 deletions src/components/list-card/list-card.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@

.meta {
display: flex;
flex-flow: row wrap;
flex-flow: row nowrap;
align-items: center;
line-height: 1.25;
font-size: var(--text-sm);
Expand Down Expand Up @@ -233,7 +233,7 @@
padding-inline: 0;

& .meta {
flex-wrap: wrap;
flex-flow: row wrap;
}
}

Expand Down

0 comments on commit b276cf6

Please sign in to comment.