Skip to content

Commit

Permalink
[Docs Site] Sort Glossary table by term
Browse files Browse the repository at this point in the history
  • Loading branch information
KianNH committed Oct 11, 2024
1 parent 599c378 commit 1188d83
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/components/Glossary.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ const { product } = Astro.props;
let terms = await getGlossaryEntries(product);
terms = terms.sort((a, b) => a.term.localeCompare(b.term));
const INITIAL_VISIBLE_ROWS = 20;
---

Expand Down

0 comments on commit 1188d83

Please sign in to comment.