Fix SEI project slug mismatch so it appears in Current Standards & Projects - #94
Merged
Merged
Conversation
…ojects The standards index page and SEI standards page looked up the project by slug "see", but Notion's PWCIs database has the SEI project's slug field set to "sei". The mismatch meant projects.find() never matched, silently dropping the SEI card from /standards/ and leaving its hero badges and project leadership empty on /standards/sei/.
✅ Deploy Preview for green-software-foundation ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
/standards/, and the dedicated/standards/sei/page was rendering with no lifecycle badge, no parent working group, and no project leadership.projects.find(p => p.slug === "see"), but the SEI project'sslugfield in Notion's PWCIs database is actually"sei"(confirmed by querying the live database directly). The mismatch meant the lookup always returnedundefined, silently dropping SEI from the grid."sei", and updated the SEI page's article-carousel tag filter from"see"to"sei"for consistency with how other standards pages tag their articles (e.g."sci","rtc").Test plan
astro buildwith representativeprojects.jsondata (slug"sei", lifecycle"Pre-draft", parent"Software Standards Working Group") and confirmed the built/standards/page now includes the SEI card with its lifecycle badge, and/standards/sei/renders the hero badge and parent working group correctly.Generated by Claude Code