Skip to content

Commit

Permalink
Fix first group not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuuuube committed Dec 31, 2024
1 parent 77db0c0 commit 00fead0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate_grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def kanjitile(char, bgcolor, count = 0, avg_interval = 0):
if config.groupby > 0:
grouping = data.groupings[config.groupby - 1]
kanji = [u.value for u in unitsList]
for i in range(1, len(grouping.groups)):
for i in range(0, len(grouping.groups)):
result_html += "<h2 style=\"color:#888;\">%s</h2>\n" % grouping.groups[i].name
table = "<div class=\"grid-container\">\n"
count_found = 0
Expand Down

0 comments on commit 00fead0

Please sign in to comment.