Make path the default

This commit is contained in:
Owen
2026-05-05 21:05:42 -07:00
parent a8f4d2b7d1
commit 54c1dd3bae
3 changed files with 3 additions and 3 deletions

View File

@@ -147,7 +147,7 @@ export function CreatePolicyRulesSectionForm({
resolver: zodResolver(addRuleSchema),
defaultValues: {
action: "ACCEPT" as const,
match: "IP",
match: "PATH",
value: ""
}
});

View File

@@ -151,7 +151,7 @@ export function EditPolicyRulesSectionForm({
resolver: zodResolver(addRuleSchema),
defaultValues: {
action: "ACCEPT" as const,
match: "IP",
match: "PATH",
value: ""
}
});

View File

@@ -972,7 +972,7 @@ export function PolicyRulesSection({
resolver: zodResolver(addRuleSchema),
defaultValues: {
action: "ACCEPT" as const,
match: "IP",
match: "PATH",
value: ""
}
});