From 02c1443dd12feeb98ba02a27973f258afff2c067 Mon Sep 17 00:00:00 2001 From: Helian Nuits Date: Sun, 22 Feb 2026 10:32:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=96=B0=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E6=8F=92=E4=BB=B6=E5=B8=82=E5=9C=BA=E5=87=BA=E7=8E=B0?= =?UTF-8?q?=E6=8F=92=E4=BB=B6=E6=98=BE=E7=A4=BA=E4=B8=BA=E7=A9=BA=E7=99=BD?= =?UTF-8?q?=E7=9A=84=20bug=EF=BC=9B=E7=BA=A0=E6=AD=A3=E5=B7=B2=E5=AE=89?= =?UTF-8?q?=E8=A3=85=E6=8F=92=E4=BB=B6=E5=8D=A1=E7=89=87=E7=9A=84=E6=8E=92?= =?UTF-8?q?=E7=89=88=EF=BC=8C=E7=BB=9F=E4=B8=80=E5=A4=A7=E5=B0=8F=20(#5309?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(ExtensionCard): 解决插件卡片大小不统一的问题 * fix(MarketPluginCard): 解决插件市场不加载插件的问题 (#5303) --- dashboard/src/components/extension/MarketPluginCard.vue | 4 ++++ dashboard/src/components/shared/ExtensionCard.vue | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/dashboard/src/components/extension/MarketPluginCard.vue b/dashboard/src/components/extension/MarketPluginCard.vue index f2e37b158..2fbb1917e 100644 --- a/dashboard/src/components/extension/MarketPluginCard.vue +++ b/dashboard/src/components/extension/MarketPluginCard.vue @@ -27,6 +27,10 @@ const normalizePlatformList = (platforms) => { return platforms.filter((item) => typeof item === "string"); }; +const platformDisplayList = computed(() => + normalizePlatformList(props.plugin?.support_platforms), +); + const handleInstall = (plugin) => { emit("install", plugin); }; diff --git a/dashboard/src/components/shared/ExtensionCard.vue b/dashboard/src/components/shared/ExtensionCard.vue index a7d1942d1..fce4fa716 100644 --- a/dashboard/src/components/shared/ExtensionCard.vue +++ b/dashboard/src/components/shared/ExtensionCard.vue @@ -108,8 +108,9 @@ const viewChangelog = () => {