We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4dcfd5 commit 8fee301Copy full SHA for 8fee301
ui/src/views/network/CreateVpc.vue
@@ -428,14 +428,15 @@ export default {
428
}
429
this.loading = true
430
const title = this.$t('label.add.vpc')
431
- const description = this.$t('message.success.add.vpc')
+ const description = values.name
432
api('createVPC', params).then(json => {
433
const jobId = json.createvpcresponse.jobid
434
if (jobId) {
435
this.$pollJob({
436
jobId,
437
title,
438
description,
439
+ successMessage: this.$t('message.success.add.vpc'),
440
loadingMessage: `${title} ${this.$t('label.in.progress')}`,
441
catchMessage: this.$t('error.fetching.async.job.result')
442
})
0 commit comments