Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit

Permalink
more menus
Browse files Browse the repository at this point in the history
  • Loading branch information
Bluerberry committed Oct 29, 2024
1 parent c7ae7dc commit 71075dc
Show file tree
Hide file tree
Showing 17 changed files with 7 additions and 51 deletions.
19 changes: 0 additions & 19 deletions src/routes/[course]/[link]/+page.server.ts

This file was deleted.

13 changes: 0 additions & 13 deletions src/routes/[course]/[link]/+page.svelte

This file was deleted.

12 changes: 0 additions & 12 deletions src/routes/[course]/[link]/+page.ts

This file was deleted.

2 changes: 1 addition & 1 deletion src/routes/app/course/[course]/overview/GraphRow.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
<IconButton scale
src={pencilIcon}
description="Edit Graph"
href="/app/course/{course.id}/graph/{graph.id}/settings"
href="/app/graph/{graph.id}/settings"
/>

<IconButton scale
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@
},
{
name: $graph.name,
href: `/app/course/${$course.code}/graph/${$graph.id}/overview`
href: `/app/graph/${$graph.id}/overview`
},
{
name: "Edit",
href: `/app/course/${$course.code}/graph/${$graph.id}/edit`
href: `/app/graph/${$graph.id}/edit`
}
]}
>
Expand All @@ -72,7 +72,7 @@

<div class="flex-spacer" />

<Button href="/app/course/{$course.code}/graph/{$graph.id}/settings"> Edit fields & relations </Button>
<Button href="/app/graph/{$graph.id}/settings"> Edit fields & relations </Button>
</svelte:fragment>

<div class="editor">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
},
{
name: $graph.name,
href: `/app/course/${$course.id}/graph/${$graph.id}/overview`
href: `/app/graph/${$graph.id}/overview`
},
{
name: 'Settings',
href: `/app/course/${$course.id}/graph/${$graph.id}/settings`
href: `/app/graph/${$graph.id}/settings`
}
]}
>
Expand All @@ -60,7 +60,7 @@

<div class="flex-spacer" />

<Button href="/app/course/{$course.id}/graph/{$graph.id}/layout"> Edit layout </Button>
<Button href="/app/graph/{$graph.id}/layout"> Edit layout </Button>
</svelte:fragment>

<Tabular tabs={[
Expand Down

0 comments on commit 71075dc

Please sign in to comment.