summaryrefslogtreecommitdiff
path: root/pkg/domain
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2020-03-23 15:54:29 -0700
committerJhon Honce <jhonce@redhat.com>2020-03-24 07:40:34 -0700
commit2c698f0140498938d2f648c0f5f86e3eec0f96d9 (patch)
tree6bf05cee2a4cf0978880cc692c403dc33453b2b3 /pkg/domain
parent0334c8d872a9ce97c294c9c192873f1f8d560271 (diff)
downloadpodman-2c698f0140498938d2f648c0f5f86e3eec0f96d9.tar.gz
podman-2c698f0140498938d2f648c0f5f86e3eec0f96d9.tar.bz2
podman-2c698f0140498938d2f648c0f5f86e3eec0f96d9.zip
Complete podmanV2 history command
* All format options now implemented Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'pkg/domain')
-rw-r--r--pkg/domain/entities/images.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/domain/entities/images.go b/pkg/domain/entities/images.go
index c84ed5351..f18ee2651 100644
--- a/pkg/domain/entities/images.go
+++ b/pkg/domain/entities/images.go
@@ -105,7 +105,7 @@ type ImageHistoryOptions struct{}
type ImageHistoryLayer struct {
ID string `json:"Id"`
- Created int64 `json:"Created,omitempty"`
+ Created int64 `json:",omitempty"`
CreatedBy string `json:",omitempty"`
Tags []string `json:",omitempty"`
Size int64 `json:",omitempty"`