feat: Support hide group

#214
This commit is contained in:
MystiPanda
2024-01-11 12:34:05 +08:00
parent a46f3a31e1
commit cbccdf5d93
5 changed files with 22 additions and 6 deletions

View File

@@ -104,6 +104,10 @@ export const ProxyItem = (props: Props) => {
)}
{showType && <TypeBox component="span">{proxy.type}</TypeBox>}
{showType && proxy.udp && <TypeBox component="span">UDP</TypeBox>}
{showType && proxy.xudp && (
<TypeBox component="span">XUDP</TypeBox>
)}
{showType && proxy.tfo && <TypeBox component="span">TFO</TypeBox>}
</>
}
/>