mirror of
https://github.com/portainer/portainer.git
synced 2025-07-31 03:09:44 +02:00
feat(image-details): simple image history (#425)
This commit is contained in:
parent
6d6f4f092d
commit
b6b579d55d
6 changed files with 99 additions and 8 deletions
8
app/models/imageLayer.js
Normal file
8
app/models/imageLayer.js
Normal file
|
@ -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…
Add table
Add a link
Reference in a new issue