diff --git a/web/src/app/home/plugins/components/plugin-market/PluginMarketComponent.tsx b/web/src/app/home/plugins/components/plugin-market/PluginMarketComponent.tsx index 03c7b49d..1f7980b2 100644 --- a/web/src/app/home/plugins/components/plugin-market/PluginMarketComponent.tsx +++ b/web/src/app/home/plugins/components/plugin-market/PluginMarketComponent.tsx @@ -632,7 +632,11 @@ function MarketPageContent({
0 + ? t('market.searchPlaceholderCount', { count: total }) + : t('market.searchPlaceholder') + } value={searchQuery} onChange={(e) => handleSearchInputChange(e.target.value)} onCompositionStart={() => { @@ -816,15 +820,6 @@ function MarketPageContent({ ); })}
- - {/* 搜索结果统计 */} - {total > 0 && ( -
- {searchQuery - ? t('market.searchResults', { count: total }) - : t('market.totalPlugins', { count: total })} -
- )} {/* Scrollable extension list section */} @@ -884,7 +879,9 @@ function MarketPageContent({ {/* No more data hint */} {!hasMore && plugins.length > 0 && (
- {t('market.allLoaded')} + {searchQuery + ? t('market.allLoadedCount', { count: total }) + : t('market.allLoaded')} {' · '}