Merge "Clarify instance state after launch submission"

This commit is contained in:
Zuul 2019-02-19 11:16:00 +00:00 committed by Gerrit Code Review
commit 14f78157a6
1 changed files with 4 additions and 2 deletions

View File

@ -332,8 +332,10 @@
function successMessage() {
var numberInstances = model.newInstanceSpec.instance_count;
var message = ngettext('%s instance launched.', '%s instances launched.', numberInstances);
toast.add('success', interpolate(message, [numberInstances]));
var message = ngettext('Scheduled of %s instance.',
'Scheduled of %s instances.',
numberInstances);
toast.add('info', interpolate(message, [numberInstances]));
}
function cleanNullProperties(finalSpec) {