From f986af1f309b36313721a0ade6cd6eb7434229e5 Mon Sep 17 00:00:00 2001 From: NFish Date: Fri, 6 Jun 2025 10:37:52 +0800 Subject: [PATCH] wip: update install plugin style --- web/app/components/plugins/plugin-page/empty/index.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/web/app/components/plugins/plugin-page/empty/index.tsx b/web/app/components/plugins/plugin-page/empty/index.tsx index 323b47ebd0..a84427eca4 100644 --- a/web/app/components/plugins/plugin-page/empty/index.tsx +++ b/web/app/components/plugins/plugin-page/empty/index.tsx @@ -13,6 +13,7 @@ import { useTranslation } from 'react-i18next' import { SUPPORT_INSTALL_LOCAL_FILE_EXTENSIONS } from '@/config' import { noop } from 'lodash-es' import { useGlobalPublicStore } from '@/context/global-public-context' +import Button from '@/app/components/base/button' type InstallMethod = { icon: React.FC<{ className?: string }> @@ -94,7 +95,7 @@ const Empty = () => { />
{installMethods.map(({ icon: Icon, text, action }) => ( -
{ @@ -108,7 +109,7 @@ const Empty = () => { > {text} -
+ ))}