We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9861f7 commit 95728faCopy full SHA for 95728fa
src/setup/states.rs
@@ -389,7 +389,12 @@ impl std::fmt::Display for FormattedFlowSetupStatusCheck<'_> {
389
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
390
let flow_ssc = self.1;
391
392
- write!(f, "{} Flow: {}\n", ObjectSetupStatusCode(flow_ssc), self.0)?;
+ write!(
393
+ f,
394
+ "{} {}\n",
395
+ ObjectSetupStatusCode(flow_ssc).to_string().color(AnsiColors::Cyan),
396
+ format!("Flow: {}", self.0).color(AnsiColors::White)
397
+ )?;
398
399
let mut f = indented(f).with_str(INDENT);
400
write!(f, "{}", flow_ssc.tracking_table)?;
0 commit comments