From 0bd14bd21d693f98f95217b1369a804f878759a7 Mon Sep 17 00:00:00 2001 From: katherinehhh Date: Thu, 25 Jan 2024 23:00:42 +0800 Subject: [PATCH] refactor: refactor dataSource manager --- .../plugin-data-source-manager/src/client/schema/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/plugins/@nocobase/plugin-data-source-manager/src/client/schema/index.ts b/packages/plugins/@nocobase/plugin-data-source-manager/src/client/schema/index.ts index 38be24e996..ed4385b0e7 100644 --- a/packages/plugins/@nocobase/plugin-data-source-manager/src/client/schema/index.ts +++ b/packages/plugins/@nocobase/plugin-data-source-manager/src/client/schema/index.ts @@ -10,7 +10,7 @@ const collection = { name: 'key', interface: 'input', uiSchema: { - title: `{{t("Data source name",{ ns: "${NAMESPACE}" })}}`, + title: `{{t("Data source UID",{ ns: "${NAMESPACE}" })}}`, type: 'string', 'x-component': 'Input', required: true, @@ -21,7 +21,7 @@ const collection = { name: 'displayName', interface: 'input', uiSchema: { - title: `{{t("Description",{ ns: "${NAMESPACE}" })}}`, + title: `{{t("Data source Title",{ ns: "${NAMESPACE}" })}}`, type: 'string', 'x-component': 'Input', required: true,