Skip to content

Commit 2651956

Browse files
Nitin Kumar Maharanamilamberspace
authored andcommitted
CLOUDSTACK-8930: Showing blank screen when click 'Next' link in final step of Add Zone wizard.
1 parent 99059e2 commit 2651956

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ui/dictionary2.jsp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1098,6 +1098,7 @@ under the License.
10981098
'label.remove.this.physical.network': '<fmt:message key="label.remove.this.physical.network" />',
10991099
'label.physical.network.name': '<fmt:message key="label.physical.network.name" />',
11001100
'label.save.changes': '<fmt:message key="label.save.changes" />',
1101+
'label.launch.zone': '<fmt:message key="label.launch.zone" />',
11011102
'label.autoscale.configuration.wizard': '<fmt:message key="label.autoscale.configuration.wizard" />',
11021103
'label.health.check.wizard': '<fmt:message key="label.health.check.wizard" />',
11031104
'label.health.check.message.desc': '<fmt:message key="label.health.check.message.desc" />',

ui/scripts/ui-custom/zoneWizard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1211,7 +1211,7 @@
12111211

12121212
// Show launch button if last step
12131213
if ($targetStep.index() == $steps.size() - 1 || options.nextStep) {
1214-
$nextButton.find('span').html(options.nextStep ? _('label.save.changes') : _('label.launch.zone'));
1214+
$nextButton.find('span').html(options.nextStep ? _l('label.save.changes') : _l('label.launch.zone'));
12151215
$nextButton.addClass('final');
12161216

12171217
if (options.nextStep) {

0 commit comments

Comments
 (0)