mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-09 19:09:36 +00:00
ui: GuestStatusView: simplify HA state display
simplify HA Information in VM/CT Summary panel. Use the already translated 'HA State' instead of 'Managed by HA' (which now becomes obsolete as it was the single appearance). Simplify PVE.Utils.format_ha respectively to mach the new name, as here is the only use of this function we have no side effects. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com> Acked-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
bbcfa5abc9
commit
50713765af
@ -852,11 +852,10 @@ Ext.define('PVE.Utils', { utilities: {
|
|||||||
},
|
},
|
||||||
|
|
||||||
format_ha: function(value) {
|
format_ha: function(value) {
|
||||||
var text = PVE.Utils.format_boolean(value.managed);
|
var text = PVE.Utils.noneText;
|
||||||
|
|
||||||
if (value.managed) {
|
if (value.managed) {
|
||||||
text += ', ' + PVE.Utils.stateText + ': ';
|
text = value.state || PVE.Utils.noneText;
|
||||||
text += value.state || PVE.Utils.noneText;
|
|
||||||
|
|
||||||
text += ', ' + PVE.Utils.groupText + ': ';
|
text += ', ' + PVE.Utils.groupText + ': ';
|
||||||
text += value.group || PVE.Utils.noneText;
|
text += value.group || PVE.Utils.noneText;
|
||||||
|
@ -24,7 +24,7 @@ Ext.define('PVE.panel.GuestStatusView', {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
itemId: 'hamanaged',
|
itemId: 'hamanaged',
|
||||||
title: gettext('Managed by HA'),
|
title: gettext('HA State'),
|
||||||
printBar: false,
|
printBar: false,
|
||||||
textField: 'ha',
|
textField: 'ha',
|
||||||
renderer: PVE.Utils.format_ha
|
renderer: PVE.Utils.format_ha
|
||||||
|
Loading…
Reference in New Issue
Block a user