@@ -645,12 +645,12 @@ impl Filter {
645
645
. map( |filter| {
646
646
if self . transport. applied_protocols. contains( filter) {
647
647
Span :: styled(
648
- format!( " {} " , filter ) ,
648
+ format!( " {filter } " ) ,
649
649
Style :: default ( ) . light_green( ) ,
650
650
)
651
651
} else {
652
652
Span :: styled(
653
- format!( " {} " , filter ) ,
653
+ format!( " {filter } " ) ,
654
654
Style :: default ( ) . light_red( ) ,
655
655
)
656
656
}
@@ -666,12 +666,12 @@ impl Filter {
666
666
. map( |filter| {
667
667
if self . network. applied_protocols. contains( filter) {
668
668
Span :: styled(
669
- format!( " {} " , filter ) ,
669
+ format!( " {filter } " ) ,
670
670
Style :: default ( ) . light_green( ) ,
671
671
)
672
672
} else {
673
673
Span :: styled(
674
- format!( " {} " , filter ) ,
674
+ format!( " {filter } " ) ,
675
675
Style :: default ( ) . light_red( ) ,
676
676
)
677
677
}
@@ -687,12 +687,12 @@ impl Filter {
687
687
. map( |filter| {
688
688
if self . link. applied_protocols. contains( filter) {
689
689
Span :: styled(
690
- format!( " {} " , filter ) ,
690
+ format!( " {filter } " ) ,
691
691
Style :: default ( ) . light_green( ) ,
692
692
)
693
693
} else {
694
694
Span :: styled(
695
- format!( " {} " , filter ) ,
695
+ format!( " {filter } " ) ,
696
696
Style :: default ( ) . light_red( ) ,
697
697
)
698
698
}
@@ -708,12 +708,12 @@ impl Filter {
708
708
. map( |filter| {
709
709
if self . traffic_direction. applied_direction. contains( filter) {
710
710
Span :: styled(
711
- format!( " {} " , filter ) ,
711
+ format!( " {filter } " ) ,
712
712
Style :: default ( ) . light_green( ) ,
713
713
)
714
714
} else {
715
715
Span :: styled(
716
- format!( " {} " , filter ) ,
716
+ format!( " {filter } " ) ,
717
717
Style :: default ( ) . light_red( ) ,
718
718
)
719
719
}
0 commit comments