1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 15:59:41 +02:00

feat(containers): add column visibility dropdown in containers view (#1977)

This commit is contained in:
Parag Jayant Datar 2018-07-05 01:24:53 -06:00 committed by Anthony Lapenna
parent 863d917acc
commit 50020dae89
5 changed files with 146 additions and 16 deletions

View file

@ -23,6 +23,7 @@ function ContainerViewModel(data) {
this.Id = data.Id;
this.Status = createStatus(data.Status);
this.State = data.State;
this.Created = data.Created;
this.Names = data.Names;
// Unavailable in Docker < 1.10
if (data.NetworkSettings && !_.isEmpty(data.NetworkSettings.Networks)) {