Browse Source
Merge pull request #1286 from colinin/vben5-fix-localized-text
fix(vben5): Fix the incorrect localized text
pull/1312/head
yx lin
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
apps/vben5/packages/@abp/settings/src/components/settings/SettingForm.vue
|
|
|
@ -71,7 +71,7 @@ async function onSubmit() { |
|
|
|
const input = toValue(settingsUpdateInput); |
|
|
|
await props.submitApi(input); |
|
|
|
emits('change', input); |
|
|
|
message.success($t('AbpSettingManagement.SuccessfullySaved')); |
|
|
|
message.success($t('AbpSettingManagement.SavedSuccessfully')); |
|
|
|
} finally { |
|
|
|
submiting.value = false; |
|
|
|
} |
|
|
|
|