Skip to content

Commit e9c90ef

Browse files
praveenkumar911Shreyash-work-emsinghalkarunkarntrehanSrijan-SS02
authored
Fix/sorting (#970)
* Dev (#969) * add workflow to build and push image * Feature/issues 2025 (#968) * added build and push workflow * 1. Added 2025 component for year 2025 Issues. 2. Made API endpoints Year Compatible 3. Made Index.js Reusable for coming years with minimum changes. * 1. Added Dummy data for 2025 * 1. Added labels for 2025 dmp issues --------- Co-authored-by: Karan Trehan <[email protected]> Co-authored-by: Srijan-SS02 <[email protected]> Co-authored-by: jaanbaaz <[email protected]> Co-authored-by: Shreyash <[email protected]> --------- Co-authored-by: Karun Agarwal <[email protected]> Co-authored-by: Karan Trehan <[email protected]> Co-authored-by: Srijan-SS02 <[email protected]> Co-authored-by: jaanbaaz <[email protected]> Co-authored-by: Shreyash <[email protected]> * fixed sorting issue in 2025-index.js --------- Co-authored-by: Shreyash-work-em <[email protected]> Co-authored-by: Karun Agarwal <[email protected]> Co-authored-by: Karan Trehan <[email protected]> Co-authored-by: Srijan-SS02 <[email protected]> Co-authored-by: jaanbaaz <[email protected]> Co-authored-by: Shreyash <[email protected]> Co-authored-by: praveenkumar911 <[email protected]>
1 parent 00d592f commit e9c90ef

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/pages/docs/2025/index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ function C4GT2025() {
6060
throw new Error(`${data?.error}`);
6161
} else {
6262
let issues = data?.issues;
63+
// alpha order
64+
issues = issues?.sort((a, b) => a.org_name.localeCompare(b.org_name));
6365
setIssueData(() => issues);
6466
if (ifOrg) {
6567
setCurrentOrgData(() => {

0 commit comments

Comments
 (0)