From 313f59bb94942cd72d4d78a816bd6fccdf4a8a2e Mon Sep 17 00:00:00 2001 From: sealday Date: Fri, 17 May 2024 13:16:36 +0800 Subject: [PATCH] fix: plugin setting use the same name (#1005) Reviewed-on: https://git.daoyoucloud.com/daoyoucloud/tachybase/pulls/1005 --- packages/plugins/@hera/plugin-homepage/src/client/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugins/@hera/plugin-homepage/src/client/index.tsx b/packages/plugins/@hera/plugin-homepage/src/client/index.tsx index fa4ccc8f2..edfc54148 100644 --- a/packages/plugins/@hera/plugin-homepage/src/client/index.tsx +++ b/packages/plugins/@hera/plugin-homepage/src/client/index.tsx @@ -12,7 +12,7 @@ export class PluginHomePageClient extends Plugin { path: '/', Component: 'HomePage', }); - this.app.pluginSettingsManager.add('hera', { + this.app.pluginSettingsManager.add('homepage', { title: tval('Homepage config'), icon: 'HomeOutlined', Component: HomePageConfiguration,