Skip to content

Commit

Permalink
Merge pull request #1170 from thunderstore-io/developer-items-order
Browse files Browse the repository at this point in the history
Order items in developers menu by importance
  • Loading branch information
anttimaki authored Aug 28, 2024
2 parents 4a232c1 + cdea024 commit c40f40c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
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

0 comments on commit c40f40c

Please sign in to comment.