1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 15:59:41 +02:00

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

This commit is contained in:
Anthony Lapenna 2017-07-26 17:12:02 +02:00 committed by GitHub
parent 635ecdef72
commit 252e05e963

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;