Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Order items in developers menu by importance #1170

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ export function DevelopersDropDown() {
<a href="/api/docs" key="docs">
<DropDownItem content={<DropDownLink label="API Docs" />} />
</a>,
<a href="https://github.com/thunderstore-io" key="github">
<DropDownItem content={<DropDownLink label="GitHub" isExternal />} />
</a>,
<a href="/package/create/docs/" key="old_format_docs">
<DropDownItem
content={<DropDownLink label="Package Format Docs" />}
/>
</a>,
<a href="/tools/manifest-v1-validator/" key="old_manifest_validator">
<DropDownItem content={<DropDownLink label="Manifest Validator" />} />
</a>,
<a href="/tools/markdown-preview/" key="old_markdown_preview">
<DropDownItem content={<DropDownLink label="Markdown Preview" />} />
</a>,
<a href="/tools/manifest-v1-validator/" key="old_manifest_validator">
<DropDownItem content={<DropDownLink label="Manifest Validator" />} />
<a href="https://github.com/thunderstore-io" key="github">
<DropDownItem content={<DropDownLink label="GitHub" isExternal />} />
</a>,
]}
/>
Expand Down
18 changes: 9 additions & 9 deletions packages/cyberstorm/src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,16 @@ export function Footer() {
</a>
</li>
<li>
<a href="https://github.com/thunderstore-io" key="github">
GitHub
<a href="/package/create/docs/" key="old_format_docs">
Package Format Docs
</a>
</li>
<li>
<a href="/package/create/docs/" key="old_format_docs">
Package Format Docs
<a
href="/tools/manifest-v1-validator/"
key="old_manifest_validator"
>
Manifest Validator
</a>
</li>
<li>
Expand All @@ -88,11 +91,8 @@ export function Footer() {
</a>
</li>
<li>
<a
href="/tools/manifest-v1-validator/"
key="old_manifest_validator"
>
Manifest Validator
<a href="https://github.com/thunderstore-io" key="github">
GitHub
</a>
</li>
</ul>
Expand Down
Loading