mirror of
https://github.com/portainer/portainer.git
synced 2025-08-01 20:05:23 +02:00
feat(registry): inspect repository images (#3121)
* feat(registry): inspect repository images * fix(registry): tag inspect column sorting
This commit is contained in:
parent
2445a5aed5
commit
f67e866e7e
6 changed files with 268 additions and 1 deletions
|
@ -0,0 +1,8 @@
|
|||
import _ from 'lodash-es';
|
||||
|
||||
export function RegistryImageLayerViewModel(order, data) {
|
||||
this.Order = order;
|
||||
this.Id = data.id;
|
||||
this.Created = data.created;
|
||||
this.CreatedBy = _.join(data.container_config.Cmd, ' ');
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue