🐛 Fix(custom): fix the download progress issue

This commit is contained in:
Kuingsmile
2026-02-02 12:22:03 +08:00
parent 859111eaa4
commit b0eddbc92f
3 changed files with 3 additions and 1 deletions

View File

@@ -12,3 +12,4 @@
- 修复了部分情况下点击相册页面排序按钮无响应的问题
- 修复了云端s3下载失败的问题
- 修复了云端页面部分UI字样错误的问题
- 修复了更新页面不显示下载进度的问题

View File

@@ -12,3 +12,4 @@
- Fixed unresponsive sorting buttons on the album page in certain cases
- Fixed S3 download failures on the cloud page
- Fixed some UI text errors on the cloud page
- Fixed the issue where the update page did not display download progress

View File

@@ -12,7 +12,7 @@
</p>
</header>
<div v-if="updateInfo.type !== 'downloading' && downloadProgress !== null" class="bg-accent-hover/5 p-6">
<div v-if="updateInfo.type === 'downloading' && downloadProgress !== null" class="bg-accent-hover/5 p-6">
<div class="mb-3 flex items-center justify-between">
<span class="text-sm font-semibold text-main">{{ $t('pages.update.downloading') }}</span>
<span class="text-sm font-semibold text-main tabular-nums">{{ Math.round(downloadProgress) }}%</span>