From 23fe40108132f9e1206ea2a5748dde64c3f45c25 Mon Sep 17 00:00:00 2001 From: fukusuket <41001169+fukusuket@users.noreply.github.com> Date: Tue, 9 Jul 2024 23:01:06 +0900 Subject: [PATCH] chg: sort computer/event_id/channel multiple val --- src/detections/detection.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/detections/detection.rs b/src/detections/detection.rs index bcebb50c5..460159633 100644 --- a/src/detections/detection.rs +++ b/src/detections/detection.rs @@ -800,6 +800,7 @@ impl Detection { .iter() .cloned() .collect::>() + .iter().sorted() .join(" ¦ ") .into(), ), @@ -817,6 +818,7 @@ impl Detection { .iter() .cloned() .collect::>() + .iter().sorted() .join(" ¦ ") .into(), ), @@ -844,6 +846,7 @@ impl Detection { .iter() .cloned() .collect::>() + .iter().sorted() .join(" ¦ ") .into(), ),