mirror of https://github.com/portainer/portainer
feat(image-details): simple image history (#425)
parent
6d6f4f092d
commit
b6b579d55d
@ -0,0 +1,8 @@
|
||||
function ImageLayerViewModel(data) {
|
||||
this.Id = data.Id;
|
||||
this.Created = data.Created;
|
||||
this.CreatedBy = data.CreatedBy;
|
||||
this.Size = data.Size;
|
||||
this.Comment = data.Comment;
|
||||
this.Tags = data.Tags;
|
||||
}
|
Loading…
Reference in new issue