Parcourir la source

chore: current bypass wrap

dongchengjie il y a 1 an
Parent
commit
9e872932d1
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 3 1
      src/components/setting/mods/sysproxy-viewer.tsx

+ 3 - 1
src/components/setting/mods/sysproxy-viewer.tsx

@@ -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>