1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-08 21:17:43 +03:00

M #~: Don't show always dropdowns (#1009)

This commit is contained in:
Frederick Borges 2021-03-22 15:47:53 +01:00 committed by GitHub
parent 4d3414d569
commit 484276b042
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1029,9 +1029,16 @@ define(function(require) {
var ipsHtml = this.ipsStr(element, { divider, groupStrFunction: groupByIpsDropdown, forceGroup: true });
var ips = [];
$.each($.parseHTML(ipsHtml), function() {
ips.push($( this ).text());
$.each($.parseHTML(ipsHtml), function(index, element) {
if (!ips.includes($( this ).text()) && $( this ).text() !== "")
ips.push($( this ).text());
});
if (ips.length === 0)
return "<p style=\"margin-bottom:0;\">--</p>";
else if (ips.length === 1)
return "<p style=\"margin-bottom:0;\">"+ips[0]+"</p>"
var firstIP = ipsHtml.split("<end_first_ip>")[0]
ipsHtml = ipsHtml.split("<end_first_ip>")[1]
ipsHtml =