Skip to content

move SQL reference higher up on the sidebar #248 #304

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

Closed
Closed
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
4 changes: 2 additions & 2 deletions docs/nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ const nav = {
page('2 - Connecting to SpacetimeDB', 'unity/part-2', 'unity/part-2.md'),
page('3 - Gameplay', 'unity/part-3', 'unity/part-3.md'),
page('4 - Moving and Colliding', 'unity/part-4', 'unity/part-4.md'),
section('SQL'),
page('SQL Reference', 'sql', 'sql/index.md'),
section('CLI Reference'),
page('CLI Reference', 'cli-reference', 'cli-reference.md'),
page('SpacetimeDB Standalone Configuration', 'cli-reference/standalone-config', 'cli-reference/standalone-config.md'),
Expand All @@ -35,8 +37,6 @@ const nav = {
page('Rust Reference', 'sdks/rust', 'sdks/rust/index.md'),
page('TypeScript Quickstart', 'sdks/typescript/quickstart', 'sdks/typescript/quickstart.md'),
page('TypeScript Reference', 'sdks/typescript', 'sdks/typescript/index.md'),
section('SQL'),
page('SQL Reference', 'sql', 'sql/index.md'),
section('Subscriptions'),
page('Subscription Reference', 'subscriptions', 'subscriptions/index.md'),
section('How To'),
Expand Down
6 changes: 3 additions & 3 deletions nav.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ const nav: Nav = {
page('3 - Gameplay', 'unity/part-3', 'unity/part-3.md'),
page('4 - Moving and Colliding', 'unity/part-4', 'unity/part-4.md'),

section('SQL'),
page('SQL Reference', 'sql', 'sql/index.md'),

section('CLI Reference'),
page('CLI Reference', 'cli-reference', 'cli-reference.md'),
page(
Expand Down Expand Up @@ -84,9 +87,6 @@ const nav: Nav = {
),
page('TypeScript Reference', 'sdks/typescript', 'sdks/typescript/index.md'),

section('SQL'),
page('SQL Reference', 'sql', 'sql/index.md'),

section('Subscriptions'),
page('Subscription Reference', 'subscriptions', 'subscriptions/index.md'),

Expand Down