mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 15:29:42 +02:00
Add size and actions to container view
This commit is contained in:
parent
2d199eec5d
commit
dd8c4ce672
3 changed files with 63 additions and 5 deletions
|
@ -6,3 +6,13 @@ function ImageViewModel(data) {
|
|||
this.Created = data.Created;
|
||||
this.Checked = false;
|
||||
}
|
||||
|
||||
function ContainerViewModel(data) {
|
||||
this.Id = data.Id;
|
||||
this.Image = data.Image;
|
||||
this.Command = data.Command;
|
||||
this.Created = data.Created;
|
||||
this.SizeRw = data.SizeRw;
|
||||
this.Status = data.Status;
|
||||
this.Checked = false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue