Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pythops committed Sep 13, 2024
1 parent 14b760d commit afdbb57
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions oryx-tui/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ impl App {
Line::styled("Network", Style::new().bold()),
Line::from_iter(NetworkFilter::default().selected_protocols.iter().map(
|filter| {
if self.network_filter.applied_protocols.contains(&filter) {
if self.network_filter.applied_protocols.contains(filter) {
Span::styled(
format!(" {} ", filter),
Style::default().light_green(),
Expand All @@ -266,7 +266,7 @@ impl App {
Line::styled("Transport", Style::new().bold()),
Line::from_iter(TransportFilter::default().selected_protocols.iter().map(
|filter| {
if self.transport_filter.applied_protocols.contains(&filter) {
if self.transport_filter.applied_protocols.contains(filter) {
Span::styled(
format!(" {} ", filter),
Style::default().light_green(),
Expand All @@ -284,7 +284,7 @@ impl App {
Line::styled("Link", Style::new().bold()),
Line::from_iter(LinkFilter::default().selected_protocols.iter().map(
|filter| {
if self.link_filter.applied_protocols.contains(&filter) {
if self.link_filter.applied_protocols.contains(filter) {
Span::styled(
format!(" {} ", filter),
Style::default().light_green(),
Expand All @@ -308,7 +308,7 @@ impl App {
if self
.traffic_direction_filter
.applied_direction
.contains(&filter)
.contains(filter)
{
Span::styled(
format!("󰞁 {} ", filter),
Expand Down

0 comments on commit afdbb57

Please sign in to comment.