This is an automated email from the ASF dual-hosted git repository.
dahn pushed a commit to branch 4.22
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.22 by this push:
new 59b6c32b60c [UI] Fix create backup notification (#12903)
59b6c32b60c is described below
commit 59b6c32b60c6fb6bcb21ea5669310d23736bf5df
Author: Suresh Kumar Anaparti <[email protected]>
AuthorDate: Mon Mar 30 15:49:35 2026 +0530
[UI] Fix create backup notification (#12903)
---
ui/src/views/compute/StartBackup.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ui/src/views/compute/StartBackup.vue
b/ui/src/views/compute/StartBackup.vue
index 812e9e49e05..de2680d1447 100644
--- a/ui/src/views/compute/StartBackup.vue
+++ b/ui/src/views/compute/StartBackup.vue
@@ -125,7 +125,7 @@ export default {
postAPI('createBackup', data).then(response => {
this.$pollJob({
jobId: response.createbackupresponse.jobid,
- title: this.$t('label.create.bucket'),
+ title: this.$t('label.create.backup'),
description: values.name,
errorMessage: this.$t('message.create.backup.failed'),
loadingMessage: `${this.$t('label.create.backup')}:
${this.resource.name || this.resource.id}`,