Whitespace and typo fix

This commit is contained in:
Philip Abernethy 2017-09-11 17:42:34 +02:00 committed by Wolfgang Bumiller
parent 3fc44aca8f
commit fd776fca18

View File

@ -148,7 +148,7 @@ Ext.define('PVE.lxc.CreateWizard', {
validator: function(value) {
var pw = me.down('field[name=password]').getValue();
if (pw !== value) {
return "Passwords does not match!";
return "Passwords do not match!";
}
return true;
}
@ -308,8 +308,8 @@ Ext.define('PVE.lxc.CreateWizard', {
params: kv,
success: function(response, opts){
var upid = response.result.data;
var win = Ext.create('PVE.window.TaskViewer', {
var win = Ext.create('PVE.window.TaskViewer', {
upid: upid
});
win.show();