Browse Source

Fix language not matched (#10775)

3.1.0-release
旭旭同學 3 years ago committed by GitHub
parent
commit
b1ccdb4b39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      dolphinscheduler-ui/src/views/projects/task/components/node/fields/use-resource-limit.ts

4
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}
}

Loading…
Cancel
Save