Skip to content

Commit

Permalink
chore: current bypass wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
dongchengjie committed May 15, 2024
1 parent ecb2fbf commit 9e87293
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/setting/mods/sysproxy-viewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@ export const SysproxyViewer = forwardRef<DialogRef>((props, ref) => {

<FlexBox>
<Typography className="label">{t("Bypass")}</Typography>
<Typography className="value">{sysproxy?.bypass || "-"}</Typography>
<Typography className="value" style={{ overflowWrap: "anywhere" }}>
{sysproxy?.bypass || "-"}
</Typography>
</FlexBox>
</Box>
</BaseDialog>
Expand Down

0 comments on commit 9e87293

Please sign in to comment.