Change demo app processlist columns to match demo-shell

Refs #775
This commit is contained in:
Will Abson 2016-12-01 15:49:30 +00:00
parent 72fc9a0b5d
commit 99298f7066

View File

@ -163,10 +163,8 @@ class MyDemoApp implements OnInit {
this.dataProcesses = new ObjectDataTableAdapter( this.dataProcesses = new ObjectDataTableAdapter(
[], [],
[ [
{type: 'text', key: 'id', title: 'Id'},
{type: 'text', key: 'name', title: 'Name', cssClass: 'full-width name-column', sortable: true}, {type: 'text', key: 'name', title: 'Name', cssClass: 'full-width name-column', sortable: true},
{type: 'text', key: 'started', title: 'Started', sortable: true}, {type: 'text', key: 'started', title: 'Started', sortable: true, cssClass: 'hidden'}
{type: 'text', key: 'startedBy.email', title: 'Started By', sortable: true}
] ]
); );
} }