Enable lenses by default

This commit is contained in:
Sam Becker 2025-03-25 11:43:19 -05:00
parent f18c76fe99
commit 29ec8fb530
2 changed files with 3 additions and 2 deletions

View File

@ -127,11 +127,11 @@ Application behavior can be changed by configuring the following environment var
#### Display #### Display
- `NEXT_PUBLIC_CATEGORY_VISIBILITY` - `NEXT_PUBLIC_CATEGORY_VISIBILITY`
- Comma-separated value controlling which photos sets appear in grid sidebar and CMD-K menu, and in what order. For example, you could move cameras above tags, and hide film simulations, by updating to `cameras,tags,recipes`. - Comma-separated value controlling which photo sets appear in grid sidebar and CMD-K menu, and in what order. For example, you could move cameras above tags, and hide film simulations, by updating to `cameras,tags,lenses,recipes`.
- Accepted values: - Accepted values:
- `tags` (default) - `tags` (default)
- `cameras` (default) - `cameras` (default)
- `lenses` - `lenses` (default)
- `recipes` (default) - `recipes` (default)
- `films` (default) - `films` (default)
- `focal-lengths` - `focal-lengths`

View File

@ -23,6 +23,7 @@ export type CategoryKeys = CategoryKey[];
export const DEFAULT_CATEGORY_KEYS: CategoryKeys = [ export const DEFAULT_CATEGORY_KEYS: CategoryKeys = [
'tags', 'tags',
'cameras', 'cameras',
'lenses',
'recipes', 'recipes',
'films', 'films',
]; ];