mirror of https://github.com/apache/cloudstack.git
Display mac address in nic detail view (#3034)
## Description Adds the MAC address to the NICs detail view of an instance. ## Types of changes - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] New feature (non-breaking change which adds functionality) - [ ] Bug fix (non-breaking change which fixes an issue) - [x] Enhancement (improves an existing feature and functionality) - [ ] Cleanup (Code refactoring and cleanup, that may add test cases) ## Screenshots:  ## How Has This Been Tested? Tested locally to verify that the correct mac address gets displayed in the detail view.
This commit is contained in:
parent
97680e7a33
commit
a216d0df3f
|
|
@ -976,6 +976,7 @@ var dictionary = {
|
|||
"label.logout": "Abmelden",
|
||||
"label.lun": "LUN",
|
||||
"label.lxc.traffic.label": "LXC Datenverkehrs-Bezeichnung",
|
||||
"label.mac.address": "MAC Adresse",
|
||||
"label.make.project.owner": "Mache Benutzerkonto zum Projekteigentümer",
|
||||
"label.make.redundant": "Redundant machen",
|
||||
"label.manage": "Verwalten",
|
||||
|
|
|
|||
|
|
@ -1014,6 +1014,7 @@ var dictionary = {
|
|||
"label.management":"Management",
|
||||
"label.management.ips":"Management IP Addresses",
|
||||
"label.management.server":"Management Server",
|
||||
"label.mac.address": "MAC Address",
|
||||
"label.mac.address.changes":"MAC Address Changes",
|
||||
"label.max.cpus":"Max. CPU cores",
|
||||
"label.max.guest.limit":"Max guest limit",
|
||||
|
|
|
|||
|
|
@ -2865,6 +2865,9 @@
|
|||
type: {
|
||||
label: 'label.type'
|
||||
},
|
||||
macaddress: {
|
||||
label: 'label.mac.address'
|
||||
},
|
||||
ipaddress: {
|
||||
label: 'label.ip.address'
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue