From 16066d0b5f3b2ab43649771a6d11c58b801c69fa Mon Sep 17 00:00:00 2001 From: vmomenv <51269338+vmomenv@users.noreply.github.com> Date: Thu, 12 Mar 2026 09:12:38 +0000 Subject: [PATCH] fix: correctly display download source based on app origin When downloading applications, the download source was incorrectly hardcoded to always show "APM Store" in the DownloadDetail component. This changes it to use the `download.origin` property to accurately display either "Spark Store" or "APM Store" based on the application's origin, without altering any underlying download logic. --- src/components/DownloadDetail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/DownloadDetail.vue b/src/components/DownloadDetail.vue index fbd4a8a1..db27ab70 100644 --- a/src/components/DownloadDetail.vue +++ b/src/components/DownloadDetail.vue @@ -116,7 +116,7 @@
下载源 {{ - download.source || "APM Store" + download.origin === "spark" ? "Spark Store" : "APM Store" }}