mirror of https://github.com/apache/cloudstack.git
instance page - remove name field from listView since name field has the same value of ID field (UUID).
This commit is contained in:
parent
e27e721b9a
commit
e86b5b4407
|
|
@ -24,8 +24,7 @@
|
|||
label: 'state.Destroyed'
|
||||
}
|
||||
},
|
||||
fields: {
|
||||
name: { label: 'label.name', editable: true },
|
||||
fields: {
|
||||
displayname: { label: 'label.display.name' },
|
||||
zonename: { label: 'label.zone.name' },
|
||||
state: {
|
||||
|
|
@ -1488,12 +1487,9 @@
|
|||
},
|
||||
|
||||
fields: [
|
||||
{
|
||||
name: { label: 'label.name', isEditable: false }
|
||||
},
|
||||
{
|
||||
{
|
||||
id: { label: 'label.id', isEditable: false },
|
||||
displayname: { label: 'label.display.name', isEditable: true },
|
||||
displayname: { label: 'label.display.name', isEditable: true },
|
||||
state: { label: 'label.state', isEditable: false },
|
||||
zonename: { label: 'label.zone.name', isEditable: false },
|
||||
hypervisor: { label: 'label.hypervisor', isEditable: false },
|
||||
|
|
@ -1531,7 +1527,8 @@
|
|||
},
|
||||
domain: { label: 'label.domain', isEditable: false },
|
||||
account: { label: 'label.account', isEditable: false },
|
||||
created: { label: 'label.created', isEditable: false, converter: cloudStack.converters.toLocalDate }
|
||||
created: { label: 'label.created', isEditable: false, converter: cloudStack.converters.toLocalDate },
|
||||
name: { label: 'label.name', isEditable: false }
|
||||
}
|
||||
],
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue