Skip to content

Commit a417b76

Browse files
committed
Changed to monospace font
Signed-off-by: Zoe Nickson <mnickson@sidingsmedia.com>
1 parent 1d7a4b5 commit a417b76

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/components/rdns/cache_data.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,12 @@ export function CacheData(props: DataProps): JSX.Element {
3939
sx={{ flex: 1, marginBottom: 2, overflow: "scroll" }}
4040
elevation={0}
4141
>
42-
<Typography whiteSpace="pre" overflow="scroll" height="100%">
42+
<Typography
43+
whiteSpace="pre"
44+
overflow="scroll"
45+
height="100%"
46+
sx={{ fontFamily: "monospace" }}
47+
>
4348
{JSON.stringify(props.data, undefined, 4)}
4449
</Typography>
4550
</Paper>

src/pages/rdns/cache.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import type { CacheSidebarProps } from "../../components/rdns/cache_sidebar";
1111
import type { List } from "../../api/responses/common";
1212
import type { ServerSelectOption } from "../../components/common";
1313

14-
import { PageContainer, PageHeader } from "@toolpad/core/PageContainer";
14+
import { PageContainer } from "@toolpad/core/PageContainer";
1515
import { useNotifications } from "@toolpad/core/useNotifications";
1616
import React from "react";
1717
import Stack from "@mui/material/Stack";

0 commit comments

Comments
 (0)