This is an automated email from the ASF dual-hosted git repository.
wanggenhua pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/dev by this push:
new b1ccdb4b39 Fix language not matched (#10775)
b1ccdb4b39 is described below
commit b1ccdb4b3921b5d07151820711073bf730de2b32
Author: 旭旭同學 <[email protected]>
AuthorDate: Tue Jul 5 14:57:31 2022 +0800
Fix language not matched (#10775)
---
.../views/projects/task/components/node/fields/use-resource-limit.ts | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-resource-limit.ts
b/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-resource-limit.ts
index b86a975eca..e5f2ad557c 100644
---
a/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-resource-limit.ts
+++
b/dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-resource-limit.ts
@@ -27,7 +27,7 @@ export function useResourceLimit(): IJsonItem[] {
name: t('project.node.cpu_quota'),
span: 12,
slots: {
- suffix: () => t('%')
+ suffix: () => '%'
},
props: {min: -1}
},
@@ -37,7 +37,7 @@ export function useResourceLimit(): IJsonItem[] {
name: t('project.node.memory_max'),
span: 12,
slots: {
- suffix: () => t('MB')
+ suffix: () => t('project.node.mb')
},
props: {min: -1}
}