ui: ha: make vote warning shorter

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
Acked-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2017-10-11 12:09:43 +02:00 committed by Wolfgang Bumiller
parent 9f50d5041b
commit 1c289bc89e

View File

@ -25,7 +25,7 @@ Ext.define('PVE.ha.VMResourceInputPanel', {
var MIN_QUORUM_VOTES = 3;
var disabledHint = Ext.createWidget({
xtype: 'displayfield', //submitValue is false, so we don't get submitted
xtype: 'displayfield', // won't get submitted by default
userCls: 'pve-hint',
value: 'Disabling the resource will stop the guest system. ' +
'See the online help for details.',
@ -36,11 +36,7 @@ Ext.define('PVE.ha.VMResourceInputPanel', {
itemId: 'fewVotesHint',
xtype: 'displayfield',
userCls: 'pve-hint',
updateValue: function(votes) {
var me = this;
me.setValue('You need at least three quorum votes for a reliable HA cluster. ' +
'See the online help for details. Current votes: ' + votes);
},
value: 'At least three quorum votes are recommended for reliable HA.',
hidden: true
});
@ -59,7 +55,6 @@ Ext.define('PVE.ha.VMResourceInputPanel', {
});
if (votes < MIN_QUORUM_VOTES) {
fewVotesHint.updateValue(votes);
fewVotesHint.setVisible(true);
}
}