Skip to content

Commit 9b755ad

Browse files
authored
fix(setup): use similar status text for flows and resources (#377)
1 parent 8faa3c2 commit 9b755ad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/setup/states.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -372,14 +372,14 @@ impl<StatusCheck: ObjectSetupStatusCheck> std::fmt::Display
372372
f,
373373
"[ {:^9} ]",
374374
match self.0.status() {
375-
ObjectStatus::New => "NEW",
375+
ObjectStatus::New => "TO CREATE",
376376
ObjectStatus::Existing =>
377377
if self.0.is_up_to_date() {
378378
"READY"
379379
} else {
380-
"UPDATED"
380+
"TO UPDATE"
381381
},
382-
ObjectStatus::Deleted => "DELETED",
382+
ObjectStatus::Deleted => "TO DELETE",
383383
ObjectStatus::Invalid => "INVALID",
384384
}
385385
)

0 commit comments

Comments
 (0)