Skip to content

Commit

Permalink
chg: sort computer/event_id/channel multiple val
Browse files Browse the repository at this point in the history
  • Loading branch information
fukusuket committed Jul 9, 2024
1 parent 23fe401 commit c55e3e9
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/detections/detection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,8 @@ impl Detection {
.iter()
.cloned()
.collect::<Vec<_>>()
.iter().sorted()
.iter()
.sorted()
.join(" ¦ ")
.into(),
),
Expand All @@ -818,7 +819,8 @@ impl Detection {
.iter()
.cloned()
.collect::<Vec<_>>()
.iter().sorted()
.iter()
.sorted()
.join(" ¦ ")
.into(),
),
Expand Down Expand Up @@ -846,7 +848,8 @@ impl Detection {
.iter()
.cloned()
.collect::<Vec<_>>()
.iter().sorted()
.iter()
.sorted()
.join(" ¦ ")
.into(),
),
Expand Down

0 comments on commit c55e3e9

Please sign in to comment.