feat: support probe mode

This commit is contained in:
ReaJason
2025-12-06 14:13:21 +08:00
parent 78f6098e6c
commit 2b79590596
78 changed files with 929 additions and 51 deletions
@@ -375,6 +375,22 @@ export default function MainConfigCard({
</FormItem>
)}
/>
<FormField
control={form.control}
name="probe"
render={({ field }) => (
<FormItem className="flex items-center space-x-2 space-y-0">
<FormControl>
<Switch
id="probe"
checked={field.value}
onCheckedChange={field.onChange}
/>
</FormControl>
<Label htmlFor="probe">{t("common:probe")}</Label>
</FormItem>
)}
/>
<FormField
control={form.control}
name="byPassJavaModule"