fix(container-details): add missing Created field from ContainerDetailsViewModel (#1075)

pull/1079/head^2
Anthony Lapenna 2017-07-26 17:12:02 +02:00 committed by GitHub
parent 635ecdef72
commit 252e05e963
1 changed files with 1 additions and 0 deletions

View File

@ -1,6 +1,7 @@
function ContainerDetailsViewModel(data) {
this.Id = data.Id;
this.State = data.State;
this.Created = data.Created;
this.Name = data.Name;
this.NetworkSettings = data.NetworkSettings;
this.Args = data.Args;