mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 01:43:44 +08:00
fix: patch item option
This commit is contained in:
parent
d4b5c55169
commit
8fb9ad3fe7
@ -41,7 +41,7 @@ const ProfileEdit = (props: Props) => {
|
||||
try {
|
||||
const { uid } = itemData;
|
||||
const { name, desc, url } = form;
|
||||
const option_ = showOpt ? option : undefined;
|
||||
const option_ = itemData.type === "remote" ? option : undefined;
|
||||
|
||||
if (itemData.type === "remote" && !url) {
|
||||
throw new Error("Remote URL should not be null");
|
||||
|
@ -54,7 +54,7 @@ const ProfileNew = (props: Props) => {
|
||||
throw new Error("The URL should not be null");
|
||||
}
|
||||
|
||||
const option_ = showOpt ? option : undefined;
|
||||
const option_ = form.type === "remote" ? option : undefined;
|
||||
await createProfile({ ...form, name, option: option_ });
|
||||
setForm({ type: "remote", name: "", desc: "", url: "" });
|
||||
setOption({ user_agent: "" });
|
||||
|
Loading…
x
Reference in New Issue
Block a user