diff --git a/xCAT-UI/js/custom/zvm.js b/xCAT-UI/js/custom/zvm.js index 9db6443db..d98ae60f7 100644 --- a/xCAT-UI/js/custom/zvm.js +++ b/xCAT-UI/js/custom/zvm.js @@ -58,7 +58,7 @@ zvmPlugin.prototype.loadServiceProvisionPage = function(tabId) { // Load zVMs, groups, and images into their respective columns loadzVMs(zvmCol); - loadGroups(groupCol); + loadSrvGroups(groupCol); loadOSImages(imageCol); provRow.children('td').css({ diff --git a/xCAT-UI/js/custom/zvmUtils.js b/xCAT-UI/js/custom/zvmUtils.js index b29552388..f3cfc7145 100644 --- a/xCAT-UI/js/custom/zvmUtils.js +++ b/xCAT-UI/js/custom/zvmUtils.js @@ -2667,7 +2667,7 @@ function loadzVMs(col) { * Table column where OS images will be placed * @return Nothing */ -function loadGroups(col) { +function loadSrvGroups(col) { // Get group names and description and append to group column var groupNames = $.cookie('srv_groups').split(','); var groupBlock, radio, args, name, ip, hostname, desc;