mirror of
https://github.com/kmc7468/arkvault.git
synced 2026-02-04 16:16:55 +00:00
동시에 업로드할 수 있는 파일의 메모리 용량을 제한하여 메모리 부족으로 인해 발생하던 크래시 해결
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
|
||||
<div class="flex h-14 items-center gap-x-4 p-2">
|
||||
<div class="flex-shrink-0 text-lg text-gray-600">
|
||||
{#if state.status === "encryption-pending"}
|
||||
{#if state.status === "queued" || state.status === "encryption-pending"}
|
||||
<IconPending />
|
||||
{:else if state.status === "encrypting"}
|
||||
<IconLockClock />
|
||||
@@ -37,7 +37,9 @@
|
||||
{state.name}
|
||||
</p>
|
||||
<p class="text-xs text-gray-800">
|
||||
{#if state.status === "encryption-pending"}
|
||||
{#if state.status === "queued"}
|
||||
대기 중
|
||||
{:else if state.status === "encryption-pending"}
|
||||
준비 중
|
||||
{:else if state.status === "encrypting"}
|
||||
암호화하는 중
|
||||
|
||||
Reference in New Issue
Block a user