diff --git a/src/components/proxy/proxy-render.tsx b/src/components/proxy/proxy-render.tsx index 07d0745..012064a 100644 --- a/src/components/proxy/proxy-render.tsx +++ b/src/components/proxy/proxy-render.tsx @@ -40,7 +40,7 @@ export const ProxyRender = (props: RenderProps) => { { > {group.type} {group.now} - + } secondaryTypographyProps={{ sx: { display: "flex", alignItems: "center" }, @@ -142,7 +142,11 @@ const StyledSubtitle = styled("span")` white-space: nowrap; `; -const StyledTypeBox = styled(Box)(({ theme }) => ({ +const ListItemTextChild = styled("span")` + display: block; +`; + +const StyledTypeBox = styled(ListItemTextChild)(({ theme }) => ({ display: "inline-block", border: "1px solid #ccc", borderColor: alpha(theme.palette.primary.main, 0.5),