Skip to content

Commit

Permalink
B #3101 multiple entries for a VF nic
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Lobo <jlobo@opennebula.systems>
  • Loading branch information
Jorge Lobo committed May 7, 2019
1 parent 4a0b133 commit a787f45
Show file tree
Hide file tree
Showing 3 changed files with 157 additions and 154 deletions.
8 changes: 4 additions & 4 deletions src/sunstone/public/app/opennebula/vm.js
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,6 @@ define(function(require) {
var nic = element.TEMPLATE.NIC;
var pci = element.TEMPLATE.PCI;
var ips = [];

var monitoring = element.MONITORING;
if (monitoring) {
var externalIP;
Expand Down Expand Up @@ -805,12 +804,13 @@ define(function(require) {
});
});
}

r=null;
if (ips.length > 0) {
return ips.join(divider);
r = ips.join(divider);
} else {
return "--";
r = "--";
}
return r;
};

// Return the Alias or several Aliases of a VM
Expand Down
Loading

4 comments on commit a787f45

@GitCop
Copy link

@GitCop GitCop commented on a787f45 May 7, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There were the following issues with your Pull Request

  • Subject needs to conform to "%{type} #%{issue_number}: %{description}"

Guidelines are available at https://github.com/OpenNebula/one/blob/master/share/doc/dev/COMMIT_MESSAGES.md


This message was auto-generated by https://gitcop.com

@GitCop
Copy link

@GitCop GitCop commented on a787f45 May 7, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There were the following issues with your Pull Request

  • Subject needs to conform to "%{type} #%{issue_number}: %{description}"

Guidelines are available at https://github.com/OpenNebula/one/blob/master/share/doc/dev/COMMIT_MESSAGES.md


This message was auto-generated by https://gitcop.com

@GitCop
Copy link

@GitCop GitCop commented on a787f45 May 7, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There were the following issues with your Pull Request

  • Subject needs to conform to "%{type} #%{issue_number}: %{description}"

Guidelines are available at https://github.com/OpenNebula/one/blob/master/share/doc/dev/COMMIT_MESSAGES.md


This message was auto-generated by https://gitcop.com

@GitCop
Copy link

@GitCop GitCop commented on a787f45 May 8, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There were the following issues with your Pull Request

  • Subject needs to conform to "%{type} #%{issue_number}: %{description}"

Guidelines are available at https://github.com/OpenNebula/one/blob/master/share/doc/dev/COMMIT_MESSAGES.md


This message was auto-generated by https://gitcop.com

Please sign in to comment.