Skip to content

Commit

Permalink
🐛 fix(Descriptions): may generate a empty row (#2033)
Browse files Browse the repository at this point in the history
  • Loading branch information
capdiem authored Jul 12, 2024
1 parent 89821d1 commit 015a31f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ private List<List<DescriptionsGroupItem>> Rows
rows.Add(row);
}

return rows;
return rows.Where(r => r.Count > 0).ToList();
}
}

Expand Down

0 comments on commit 015a31f

Please sign in to comment.