1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 05:45:22 +02:00

feat(volumes): show volume creation date (#2745)

This commit is contained in:
linquize 2019-03-01 06:59:11 +08:00 committed by Anthony Lapenna
parent 1eb7e6bacc
commit 42529cc5ea
3 changed files with 13 additions and 0 deletions

View file

@ -1,5 +1,6 @@
function VolumeViewModel(data) {
this.Id = data.Name;
this.CreatedAt = data.CreatedAt;
this.Driver = data.Driver;
this.Options = data.Options;
this.Labels = data.Labels;