Fix language not matched (#10775)

This commit is contained in:
旭旭同學 2022-07-05 14:57:31 +08:00 committed by GitHub
parent 7d79a2165e
commit b1ccdb4b39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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