diff --git a/controller/overview.go b/controller/overview.go
index 1f26550d..dbf95a1d 100644
--- a/controller/overview.go
+++ b/controller/overview.go
@@ -38,7 +38,6 @@ func overviewHandler(_ metadata.OverviewParams, principal *rest_model_zrok.Princ
},
}
for _, svc := range svcs {
- logrus.Infof("active = %t", svc.Active)
es.Services = append(es.Services, &rest_model_zrok.Service{
Active: svc.Active,
CreatedAt: svc.CreatedAt.String(),
diff --git a/ui/src/Environments.js b/ui/src/Environments.js
index d0b781a9..4eac32a5 100644
--- a/ui/src/Environments.js
+++ b/ui/src/Environments.js
@@ -24,14 +24,23 @@ const Environments = (props) => {
sortable: true,
},
{
- name: 'Active',
- selector: row => row.environment.active ? 'Active' : 'Inactive',
+ name: 'Updated',
+ selector: row => row.environment.updatedAt,
sortable: true,
},
]
+ const conditionalRowStyles = [
+ {
+ when: row => !row.environment.active,
+ style: {
+ display: 'none'
+ }
+ }
+ ]
+
const servicesComponent = ({ data }) =>