From 0d700bd252b608f9705c9da960fd8651acaca729 Mon Sep 17 00:00:00 2001 From: nickofolas Date: Sat, 29 Jan 2022 23:19:58 -0600 Subject: [PATCH] Change global theme import rows to 10 and format --- src/Themes/ui/ThemeEditorModal.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Themes/ui/ThemeEditorModal.tsx b/src/Themes/ui/ThemeEditorModal.tsx index 986f7420d..daa09ef8c 100644 --- a/src/Themes/ui/ThemeEditorModal.tsx +++ b/src/Themes/ui/ThemeEditorModal.tsx @@ -348,9 +348,9 @@ export function ThemeEditorModal(props: IProps): React.ReactElement { sx={{ mb: 1 }} multiline fullWidth - maxRows={3} + maxRows={10} label={"import / export theme"} - value={JSON.stringify(customTheme)} + value={JSON.stringify(customTheme, undefined, 2)} onChange={onThemeChange} /> <>