Skip to content

Commit

Permalink
UI(configs): fixed out of alphabetical order #1309
Browse files Browse the repository at this point in the history
  • Loading branch information
hitenkoku committed Mar 17, 2024
1 parent fae1531 commit c7f96d5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/detections/configs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,7 @@ impl Action {
#[derive(Args, Clone, Debug)]
pub struct DetectCommonOption {
/// Scan JSON formatted logs instead of .evtx (.json or .jsonl)
#[arg(help_heading = Some("General Options"), short = 'J', long = "JSON-input", conflicts_with = "live_analysis", display_order = 390)]
#[arg(help_heading = Some("General Options"), short = 'J', long = "JSON-input", conflicts_with = "live_analysis", display_order = 360)]
pub json_input: bool,

/// Specify additional evtx file extensions (ex: evtx_data)
Expand Down Expand Up @@ -956,7 +956,7 @@ pub struct DetectCommonOption {
default_value = "./rules/config",
hide_default_value = true,
value_name = "DIR",
display_order = 441
display_order = 442
)]
pub config: PathBuf,

Expand Down Expand Up @@ -1081,7 +1081,7 @@ pub struct SearchOption {
default_value = "./rules/config",
hide_default_value = true,
value_name = "DIR",
display_order = 441
display_order = 442
)]
pub config: PathBuf,

Expand Down Expand Up @@ -1148,7 +1148,7 @@ pub struct UpdateOption {
hide_default_value = true,
value_name = "DIR/FILE",
requires = "no_wizard",
display_order = 440
display_order = 441
)]
pub rules: PathBuf,
}
Expand Down Expand Up @@ -1518,7 +1518,7 @@ pub struct OutputOption {
hide_default_value = true,
value_name = "DIR/FILE",
requires = "no_wizard",
display_order = 440
display_order = 441
)]
pub rules: PathBuf,

Expand Down Expand Up @@ -1695,7 +1695,7 @@ pub struct ComputerMetricsOption {
default_value = "./rules/config",
hide_default_value = true,
value_name = "DIR",
display_order = 441
display_order = 442
)]
pub config: PathBuf,

Expand Down

0 comments on commit c7f96d5

Please sign in to comment.