Skip to content

Commit

Permalink
refactor/nanocl: remove version column in table
Browse files Browse the repository at this point in the history
  • Loading branch information
leon3s committed Dec 22, 2023
1 parent 0718f3d commit 15a85e1
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions bin/nanocl/src/models/resource.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -65,7 +63,6 @@ impl From<Resource> 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}"),
Expand Down

0 comments on commit 15a85e1

Please sign in to comment.