From d0303affe01f8019e0ce14b7ce9e245aada5315e Mon Sep 17 00:00:00 2001 From: Danny Coulombe Date: Tue, 30 Dec 2025 11:05:10 -0500 Subject: [PATCH] Disable auto-split layout by default --- package.json | 2 +- src/stores/global.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1f8cf64..e140a78 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@json.ms/www", "private": true, "type": "module", - "version": "1.3.4", + "version": "1.3.5", "scripts": { "dev": "vite --host", "build": "run-p type-check \"build-only {@}\" --", diff --git a/src/stores/global.ts b/src/stores/global.ts index 43fe8dc..06c7ece 100644 --- a/src/stores/global.ts +++ b/src/stores/global.ts @@ -95,7 +95,7 @@ const defaultUserSettings: IUserSettings = Object.assign({}, { layoutSitePreviewLocation: 'start', layoutSitePreviewPadding: true, layoutSitePreviewKeepRatio: true, - layoutAutoSplit: true, + layoutAutoSplit: false, blueprintsIncludeTypings: true, blueprintsReadFromData: true, blueprintsReadFromStructure: true,