From a6b0071ca0edb4455aee6b39bef0c8a223e9ba70 Mon Sep 17 00:00:00 2001 From: WTW0313 Date: Thu, 4 Sep 2025 16:05:29 +0800 Subject: [PATCH] feat: add datasource category handling in marketplace list condition --- web/app/components/plugins/marketplace/utils.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/app/components/plugins/marketplace/utils.ts b/web/app/components/plugins/marketplace/utils.ts index 80a239ca25..830779f820 100644 --- a/web/app/components/plugins/marketplace/utils.ts +++ b/web/app/components/plugins/marketplace/utils.ts @@ -117,6 +117,9 @@ export const getMarketplaceListCondition = (pluginType: string) => { if (pluginType === PluginType.extension) return 'category=endpoint' + if (pluginType === PluginType.datasource) + return 'category=datasource' + if (pluginType === 'bundle') return 'type=bundle'