Skip to content

Commit

Permalink
Hide CV series with only one variant (#2510)
Browse files Browse the repository at this point in the history
  • Loading branch information
be5invis committed Sep 21, 2024
1 parent 262299d commit 4982f7e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pages/specimen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,7 @@ function CharVariantsImpl(props: SpecimenCharacterProps) {
const rows = [...typographicFeatures, ...charFeatures];
for (let iGroup = 0; iGroup < rows.length; iGroup++) {
const fs = queryCvList(ctx.val.atlas, rows[iGroup]);
if (fs.size <= 1) continue;
const subgroups: JSX.Element[] = [];

for (let iSubgroup = 0; iSubgroup < fs.groups.length; iSubgroup++) {
Expand Down

0 comments on commit 4982f7e

Please sign in to comment.