From fbe3df56582647f1a79a29cbb2fe7282bf0bbb7e Mon Sep 17 00:00:00 2001 From: zhsama Date: Fri, 17 Oct 2025 18:22:42 +0800 Subject: [PATCH] fix(plugin-detail-panel): update provider reference to use trigger identity name --- web/app/components/plugins/plugin-detail-panel/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/plugins/plugin-detail-panel/index.tsx b/web/app/components/plugins/plugin-detail-panel/index.tsx index ae82b1f55a..18b0a4556d 100644 --- a/web/app/components/plugins/plugin-detail-panel/index.tsx +++ b/web/app/components/plugins/plugin-detail-panel/index.tsx @@ -35,7 +35,7 @@ const PluginDetailPanel: FC = ({ useEffect(() => { setDetail(!detail ? undefined : { plugin_id: detail.plugin_id, - provider: `${detail.plugin_id}/${detail.declaration.name}`, + provider: `${detail.plugin_id}/${detail.declaration.trigger.identity.name}`, declaration: detail.declaration, name: detail.name, })