Compare commits

...

3 Commits

Author SHA1 Message Date
Ruben Fiszel
0cc3342e12 chore: update sqlx offline cache
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-05 06:45:57 +00:00
Ruben Fiszel
d081323250 chore: update ee-repo-ref
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-05 06:39:46 +00:00
Ruben Fiszel
ebbc259a37 feat: add volume limits info in CE volumes drawer
Show an info alert in the volumes drawer when running in Community
Edition, mentioning the 20 volumes per workspace and 50 MB per file
limits. Update ee-repo-ref for companion EE changes.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-05 06:36:24 +00:00
5 changed files with 15 additions and 7 deletions

View File

@@ -15,7 +15,7 @@
]
},
"nullable": [
false
true
]
},
"hash": "2d6607b3c38fe72b5663c32de58dacbabed4c5ae28101e3ae2694f96fd055a91"

View File

@@ -15,7 +15,7 @@
]
},
"nullable": [
true
null
]
},
"hash": "5a219a2532517869578c4504ff3153c43903f929ae5d62fbba12610f89c36d55"

View File

@@ -15,7 +15,7 @@
]
},
"nullable": [
false
true
]
},
"hash": "eba16eb819e2644284fb073c891706d78a6f24cb0e614d7d81ba1b643805bf06"

View File

@@ -1 +1 @@
151bc3edfe23c160f4f9b0cfaa708beb36c212f4
05385738e36e81f5bc51d15c0ca60bba30457c21

View File

@@ -1,8 +1,8 @@
<script lang="ts">
import { Drawer, DrawerContent } from '../common'
import { Alert, Drawer, DrawerContent } from '../common'
import { VolumeService } from '$lib/gen'
import { workspaceStore, userStore } from '$lib/stores'
import { displayDate, displaySize, sendUserToast } from '$lib/utils'
import { enterpriseLicense, workspaceStore, userStore } from '$lib/stores'
import { displayDate, displaySize, emptyString, sendUserToast } from '$lib/utils'
import { File, HardDriveIcon, Loader2, Plus, Shield, Trash2 } from 'lucide-svelte'
import Button from '../common/button/Button.svelte'
import SharedBadge from '../SharedBadge.svelte'
@@ -119,6 +119,14 @@
{/snippet}
</Popover>
{/snippet}
{#if emptyString($enterpriseLicense)}
<div class="mb-4">
<Alert type="info" title="Community Edition limits">
Volumes are limited to 20 per workspace and 50 MB per file. Upgrade to Enterprise
Edition to remove these limits.
</Alert>
</div>
{/if}
{#if volumes.loading}
<div class="flex items-center justify-center py-8">
<Loader2 size={24} class="animate-spin text-secondary" />