From ce83642d2298b6bc0f649e79ec5062d95b4317f0 Mon Sep 17 00:00:00 2001 From: LJ Date: Wed, 23 Apr 2025 10:30:04 -0700 Subject: [PATCH] fix(setup): use similar status text for flows and resources --- src/setup/states.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/setup/states.rs b/src/setup/states.rs index e4e810f7..b61488de 100644 --- a/src/setup/states.rs +++ b/src/setup/states.rs @@ -372,14 +372,14 @@ impl std::fmt::Display f, "[ {:^9} ]", match self.0.status() { - ObjectStatus::New => "NEW", + ObjectStatus::New => "TO CREATE", ObjectStatus::Existing => if self.0.is_up_to_date() { "READY" } else { - "UPDATED" + "TO UPDATE" }, - ObjectStatus::Deleted => "DELETED", + ObjectStatus::Deleted => "TO DELETE", ObjectStatus::Invalid => "INVALID", } )