diff --git a/packages/core/client/src/system-settings/SystemSettingsShortcut.tsx b/packages/core/client/src/system-settings/SystemSettingsShortcut.tsx index d9751d38af..c97703007e 100644 --- a/packages/core/client/src/system-settings/SystemSettingsShortcut.tsx +++ b/packages/core/client/src/system-settings/SystemSettingsShortcut.tsx @@ -92,7 +92,7 @@ const schema: ISchema = { type: 'string', title: "{{t('System title')}}", 'x-decorator': 'FormItem', - 'x-component': 'Input', + 'x-component': 'Input.TextArea', required: true, }, logo: { diff --git a/packages/plugins/@nocobase/plugin-auth/src/client/pages/AuthLayout.tsx b/packages/plugins/@nocobase/plugin-auth/src/client/pages/AuthLayout.tsx index 969430e0ae..d6594bc752 100644 --- a/packages/plugins/@nocobase/plugin-auth/src/client/pages/AuthLayout.tsx +++ b/packages/plugins/@nocobase/plugin-auth/src/client/pages/AuthLayout.tsx @@ -8,11 +8,11 @@ */ import { css } from '@emotion/css'; +import { PoweredBy, ReadPretty, useAPIClient, useRequest, useSystemSettings } from '@nocobase/client'; +import { Spin } from 'antd'; import React, { FC } from 'react'; import { Outlet } from 'react-router-dom'; -import { useSystemSettings, PoweredBy, useRequest, useAPIClient } from '@nocobase/client'; import { AuthenticatorsContext } from '../authenticator'; -import { Spin } from 'antd'; export const AuthenticatorsContextProvider: FC<{ children: React.ReactNode }> = ({ children }) => { const api = useAPIClient(); @@ -55,7 +55,9 @@ export function AuthLayout() { paddingTop: '20vh', }} > -