diff --git a/web/src/routes/projects/[id]/volumes/+page.svelte b/web/src/routes/projects/[id]/volumes/+page.svelte index add58fd..3ceca97 100644 --- a/web/src/routes/projects/[id]/volumes/+page.svelte +++ b/web/src/routes/projects/[id]/volumes/+page.svelte @@ -4,9 +4,13 @@ import * as api from '$lib/api'; import { toasts } from '$lib/stores/toast'; import { t } from '$lib/i18n'; - import { IconChevronRight, IconPlus, IconEdit, IconTrash, IconCheck, IconX } from '$lib/components/icons'; + import { IconChevronRight, IconPlus, IconEdit, IconTrash, IconCheck, IconX, IconSearch, IconExternalLink } from '$lib/components/icons'; import Skeleton from '$lib/components/Skeleton.svelte'; + function downloadUrl(volId: string): string { + return api.volumeDownloadUrl(projectId, volId); + } + let volumes = $state([]); let scopeInfos = $state([]); let loading = $state(true); @@ -253,6 +257,14 @@
+ {#if vol.scope !== 'ephemeral'} + + + + + + + {/if}