From 3e52f2ed0128aa3ab9d020325d1c8942fe92f1d6 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Thu, 5 Jan 2017 12:23:52 +0100 Subject: [PATCH] ha: re-add node to service status On the old HA status we saw where a service was located currently, this information was lost when we merged the resource and the status tab. Add this information again. Signed-off-by: Thomas Lamprecht --- www/manager6/ha/Resources.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/www/manager6/ha/Resources.js b/www/manager6/ha/Resources.js index 8d35afcd..9f716eb3 100644 --- a/www/manager6/ha/Resources.js +++ b/www/manager6/ha/Resources.js @@ -127,6 +127,12 @@ Ext.define('PVE.ha.ResourcesView', { sortable: true, dataIndex: 'state' }, + { + header: gettext('Node'), + width: 100, + sortable: true, + dataIndex: 'node' + }, { header: gettext('Request State'), width: 100, @@ -196,7 +202,7 @@ Ext.define('PVE.ha.ResourcesView', { extend: 'Ext.data.Model', fields: [ 'sid', 'state', 'digest', 'errors', 'group', 'comment', - 'max_restart', 'max_relocate', 'type', 'status', + 'max_restart', 'max_relocate', 'type', 'status', 'node', 'crm_state', 'request_state' ], idProperty: 'sid' -- 2.39.5