Paint route URI query parts yellow.

This commit is contained in:
Sergio Benitez 2023-05-04 17:30:23 -07:00
parent c1ead84ec5
commit 541952bc58
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ impl<'a> RouteUri<'a> {
write!(f, "{}", Paint::blue(self.base()).underline())?; write!(f, "{}", Paint::blue(self.base()).underline())?;
write!(f, "{}", Paint::blue(unmounted_part))?; write!(f, "{}", Paint::blue(unmounted_part))?;
if let Some(q) = self.unmounted().query() { if let Some(q) = self.unmounted().query() {
write!(f, "?{}", Paint::green(q))?; write!(f, "{}{}", Paint::yellow("?"), Paint::yellow(q))?;
} }
Ok(()) Ok(())