Skip to content

Commit 460de57

Browse files
pliablepixelsclaude
andcommitted
fix: change default event montage grid columns from 5 to 2
Changed the default number of columns for event montage view from 5 to 2 for better initial viewing experience, especially on mobile and tablet devices. Changes: - Updated DEFAULT_SETTINGS.eventMontageGridCols from 5 to 2 - Updated test expectation to match new default This provides a more reasonable default layout that works better across different screen sizes while still allowing users to customize the column count as needed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 941b502 commit 460de57

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

app/src/stores/__tests__/settings.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ describe('Settings Store', () => {
1414
expect(settings.viewMode).toBe('snapshot');
1515
expect(settings.snapshotRefreshInterval).toBe(3);
1616
expect(settings.montageGridRows).toBe(4);
17-
expect(settings.eventMontageGridCols).toBe(5);
17+
expect(settings.eventMontageGridCols).toBe(2);
1818
expect(settings.monitorDetailCycleSeconds).toBe(0);
1919
expect(settings.eventsThumbnailFit).toBe('contain');
2020
});

app/src/stores/settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ const DEFAULT_SETTINGS: ProfileSettings = {
8888
eventMontageLayouts: {},
8989
montageGridRows: 4,
9090
montageGridCols: 4,
91-
eventMontageGridCols: 5,
91+
eventMontageGridCols: 2,
9292
montageIsFullscreen: false,
9393
montageFeedFit: 'contain',
9494
eventsViewMode: 'list',

0 commit comments

Comments
 (0)