increase font size of smart playlist JSON editor

This commit is contained in:
jeffvli
2026-04-05 02:42:05 -07:00
parent 08ce8a4028
commit 4fd56281d5
@@ -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}
/>
</ScrollArea>