From 15a85e1a4580e62e6fe242e7948b3013644d256e Mon Sep 17 00:00:00 2001 From: leon3s Date: Fri, 22 Dec 2023 22:49:10 +0100 Subject: [PATCH] refactor/nanocl: remove version column in table --- bin/nanocl/src/models/resource.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/bin/nanocl/src/models/resource.rs b/bin/nanocl/src/models/resource.rs index 32d156c74..b3b486d26 100644 --- a/bin/nanocl/src/models/resource.rs +++ b/bin/nanocl/src/models/resource.rs @@ -39,8 +39,6 @@ pub struct ResourceRow { pub name: String, /// Kind of resource pub kind: String, - /// Version of the ressource - pub version: String, /// When the resource was created #[tabled(rename = "CREATED AT")] pub created_at: String, @@ -65,7 +63,6 @@ impl From for ResourceRow { .format("%Y-%m-%d %H:%M:%S"); Self { name: resource.spec.resource_key, - version: resource.spec.version, kind: resource.kind, created_at: format!("{created_at}"), updated_at: format!("{updated_at}"),