From 4fd56281d51f8df8d7c8d76835169b882de095f8 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Sun, 5 Apr 2026 02:42:05 -0700 Subject: [PATCH] increase font size of smart playlist JSON editor --- .../features/playlists/components/playlist-query-editor.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/renderer/features/playlists/components/playlist-query-editor.tsx b/src/renderer/features/playlists/components/playlist-query-editor.tsx index a31a1537a..8e728fc63 100644 --- a/src/renderer/features/playlists/components/playlist-query-editor.tsx +++ b/src/renderer/features/playlists/components/playlist-query-editor.tsx @@ -422,8 +422,12 @@ export const PlaylistQueryEditor = ({ minRows={8} onChange={(value) => setJsonText(value)} placeholder='{ "all": [], "limit": 100, "sort": "+dateAdded" }' + size="lg" spellCheck={false} - style={{ flex: 1, minHeight: 0 }} + style={{ + flex: 1, + minHeight: 0, + }} value={jsonText} />