Skip to content
Merged
Changes from 4 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
5 changes: 4 additions & 1 deletion src/lib/pages/nexus-endpoint.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,20 @@
let {
endpoint,
editDisabled = false,
backHref = routeForNexus(),
taskQueueStatus,
}: {
endpoint: Endpoint;
backHref?: string;
editDisabled?: boolean;
editHidden?: boolean;
taskQueueStatus?: Snippet;
} = $props();
</script>

<div class="flex flex-col gap-8">
<div class="relative flex flex-col gap-4 text-sm">
<Link href={routeForNexus()} icon="chevron-left">
<Link href={backHref} icon="chevron-left">
{translate('nexus.back-to-endpoints')}
</Link>
</div>
Expand Down
Loading